-
事件操作:
-
-
-
-
-
+
+
事件描述:{{alarm.description}}
+
发生时间:{{alarm.updateTime}}
+
事件类别:{{alarm.typeName}}
+
危险级别:
+ {{alarm.levelName}}
+ {{alarm.levelName}}
+ {{alarm.levelName}}
+
+
+ 事件操作:
+
+
+
+
+
+
+
识别设备:{{alarm.devName}}
+
所在楼栋:{{alarm.positionName}}
所在楼层:{{alarm.areaName}}
事件位置:{{alarm.detailLocation}}
-
发生时间:{{alarm.updateTime}}
监控视频
@@ -48,6 +55,7 @@
errorImg: require('@/assets/global_images/photo_error.png'),
item: require('@/assets/popup/item.png'), // 背景图片
statusList: [],
+ isbig: false,
alarm: {
area: '',
areaName: '',
@@ -91,21 +99,22 @@
methods: {
async reload() {
await this.$nextTick()
- document.getElementById('playHK').contentWindow.initPlugin('real', window.screen.availWidth - 500, window.screen.availHeight / 2 - 40)
+ document.getElementById('playHK').contentWindow.initPlugin('real', window.screen.availWidth - 500, window.screen.availHeight / 2 + 30)
},
async initData() {
if (this.$route.query && this.$route.query.message) {
+ this.isbig = false
getDrawNoCase(this.$route.query.message.slice(7)).then(async response => {
if (response.code === 200) {
this.alarm = response.data
await this.$nextTick()
setTimeout(() => {
try {
- document.getElementById('playHK').contentWindow.initPlugin('real', window.screen.availWidth - 500, window.screen.availHeight / 2 - 40)
+ document.getElementById('playHK').contentWindow.initPlugin('real', window.screen.availWidth - 500, window.screen.availHeight / 2 + 30)
} catch (e) {
} finally {
setTimeout(() => {
- document.getElementById('playHK').contentWindow.play(this.device.indexCode)
+ document.getElementById('playHK').contentWindow.play(this.alarm.indexCode)
}, 1000)
}
}, 1000)
@@ -149,6 +158,16 @@