From ddd458cbc408b57353e908ec9b788a138e30042f Mon Sep 17 00:00:00 2001 From: odc.xiaohui <xiaohui@Q1> Date: 星期三, 14 十二月 2022 18:18:21 +0800 Subject: [PATCH] 2022-12-14 肖辉 预警研判-- 列表数据展示 --- 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