From 8afb1cbbeeccc488b43d33da8ca83f4e3ff1f2b4 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Wed, 08 Feb 2023 16:50:20 +0800
Subject: [PATCH] 视频监控树结构更改,地图添加影像服务
---
src/components/map/components/mapPopup.vue | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/src/components/map/components/mapPopup.vue b/src/components/map/components/mapPopup.vue
index 3b32398..9f780b2 100644
--- a/src/components/map/components/mapPopup.vue
+++ b/src/components/map/components/mapPopup.vue
@@ -33,8 +33,8 @@
<div>{{ dataPopup.JJYXM }}</div>
</div>
<div class="item">
- <div>接警时间:</div>
- <div>{{ dataPopup.JJSJ }}</div>
+ <div>报警时间:</div>
+ <div>{{ dataPopup.BJSJ }}</div>
</div>
<div class="item">
<div>报警人:</div>
@@ -125,6 +125,9 @@
export default {
name: 'mapPopup',
+
+ inject: ["getWidth", 'userInfo'],
+
data () {
return {
currentBtn: '接警信息',
@@ -132,8 +135,6 @@
scaleDomFlag: false
}
},
-
- inject: ["getWidth"],
computed: {
...mapGetters([
@@ -163,7 +164,7 @@
this.CJdata = {}
- getActAsPoliceList(this.dataPopup.JJDBH, '').then(res => {
+ getActAsPoliceList(this.dataPopup.JJDBH, this.userInfo.dept_id).then(res => {
if (res.data.data.records.length > 0) {
this.CJdata = res.data.data.records[0]
}
--
Gitblit v1.9.3