From 22961d36b66fd07ac50e2b9479e0bad968723cdd Mon Sep 17 00:00:00 2001
From: odc.xiaohui <xiaohui@Q1>
Date: 星期四, 15 十二月 2022 10:15:57 +0800
Subject: [PATCH] 2022-12-14 肖辉 预警研判-- 列表数据展示
---
src/views/intelligentPatrol/studyJudge/index.vue | 17 ++++++++++++++---
1 files changed, 14 insertions(+), 3 deletions(-)
diff --git a/src/views/intelligentPatrol/studyJudge/index.vue b/src/views/intelligentPatrol/studyJudge/index.vue
index 293d94b..f60b93c 100644
--- a/src/views/intelligentPatrol/studyJudge/index.vue
+++ b/src/views/intelligentPatrol/studyJudge/index.vue
@@ -30,7 +30,7 @@
<!-- <span class="moni-area">{{ currentEvent.street }}</span>-->
<!-- <span>{{ currentEvent.address }}</span>-->
<!-- </div>-->
- <span
+ <span @click="openDialogTable" class="count-data-span"
>鎮ㄦ湁{{ countData.review }}鏉″緟瀹℃牳鎶ヨ淇℃伅,浠婃棩绔嬫{{
countData.register
}}鏉�,鍐嶅涔爗{ countData.study }}鏉�</span
@@ -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;
@@ -682,8 +689,12 @@
.sjm-content-left {
line-height: 4.8vh;
+ .count-data-span{
+ cursor: pointer;
+ }
.left-form > ::v-deep.el-form-item__label {
font-size: 16px !important;
+
}
.img-item {
display: flex;
--
Gitblit v1.8.0