xiangpei
2024-08-02 c047fa1a6163ecf6e9d449fdc4842ea306d26bd4
src/views/system/data-manage/data-detail/index.vue
@@ -103,7 +103,7 @@
</template>
<script>
import { listPlatform, getPlatform, delPlatform, addPlatform, updatePlatform } from "@/api/platform/vehicle-data-monitor";
import { dataCenter } from "@/api/platform/data-center";
import { videoData, carData, faceData, equipment } from "./list";
import store from '@/store';
@@ -183,13 +183,13 @@
      this.tableHead = data.columns;
      this.cardList = data.card;
    }
    this.getList();
    this.getList(this.$route.query.url);
  },
  methods: {
    /** 查询卡口过车数据一致性列表 */
    getList() {
    getList(url) {
      this.loading = true;
      listPlatform(this.queryParams).then(response => {
      dataCenter(url, this.queryParams).then(response => {
        this.platformList = response.rows;
        this.total = response.total;
        this.loading = false;