From 0bc97726ed2c14d075557ef897d0d8b1ecfe5c4f Mon Sep 17 00:00:00 2001
From: fangyuan <527392886@qq.com>
Date: 星期四, 15 十二月 2022 09:45:46 +0800
Subject: [PATCH] 趋势分析经纬度修改
---
src/views/intelligentPatrol/studyJudge/index.vue | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/src/views/intelligentPatrol/studyJudge/index.vue b/src/views/intelligentPatrol/studyJudge/index.vue
index 293d94b..64ad3d3 100644
--- a/src/views/intelligentPatrol/studyJudge/index.vue
+++ b/src/views/intelligentPatrol/studyJudge/index.vue
@@ -228,6 +228,9 @@
<div id="dom1" class="dom1"></div>
</div>
</el-dialog>
+ <el-dialog :visible.sync="isShowTable" title="鎶ヨ淇℃伅" width="1200px">
+ <inspection-table/>
+ </el-dialog>
</div>
</template>
@@ -238,11 +241,11 @@
import { FILE_ORIGINAL_URL } from "@/utils";
import { validateCarNum } from "@/utils/validate";
import MyDispatch from "@/components/dispatch";
-
+import InspectionTable from "@/views/intelligentPatrol/studyJudge/inspectionTable/index.vue";
import MyMap from "@/components/map";
export default {
- components: { MyDispatch, MyMap },
+ components: { MyDispatch, MyMap,InspectionTable },
created() {
this.getInspectionData();
this.initEventParams();
@@ -293,6 +296,7 @@
}
};
return {
+ isShowTable:true,
timer: null,
countData: {
study: 0,
@@ -370,6 +374,9 @@
};
},
methods: {
+ openDialogTable(){
+ this.isShowTable = true
+ },
pageChange(type) {
if (type === "next") {
this.currentPage += 1;
--
Gitblit v1.8.0