From 921d210ab1c7b4159424788e891113c95dcc3505 Mon Sep 17 00:00:00 2001 From: mark <mark18340872469@163.com> Date: 星期二, 27 九月 2022 16:43:12 +0800 Subject: [PATCH] 摄像机管理 时间段 过滤 改bug --- src/views/hashrate/CameraManage/index.vue | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/views/hashrate/CameraManage/index.vue b/src/views/hashrate/CameraManage/index.vue index 13a95d1..697b9c2 100644 --- a/src/views/hashrate/CameraManage/index.vue +++ b/src/views/hashrate/CameraManage/index.vue @@ -51,7 +51,8 @@ cluster: "", clusterData: [], intervalTimer: null, - screenHeight: 0 + screenHeight: 0, + nodeDevId: "" } }, @@ -62,6 +63,7 @@ watch: { "TreeDataPool.activeNode": function(node) { sessionStorage.setItem("cameraDevId", node.devId) + this.nodeDevId = node.devId if (this.activeTab == "淇℃伅缁存姢") { if (this.TreeDataPool.treeActiveName == "camera") { this.$refs.cameraInfo.selectCamera(node) @@ -108,7 +110,7 @@ if (this.activeTab == "淇℃伅缁存姢") { // this.$refs.dataStackInfo.selectDir(node); } else if (this.activeTab == "鍦烘櫙閰嶇疆" && node.length !== 0) { - this.$refs.sepRule.initCameraData(node.id) + this.$refs.sepRule.initCameraData(node.id, this.nodeDevId) } }) }, @@ -194,10 +196,10 @@ } } else if (tab === "鍦烘櫙閰嶇疆") { if (this.TreeDataPool.treeActiveName == "camera") { - this.$refs.sepRule.initCameraData(this.TreeDataPool.selectedNode.id) + this.$refs.sepRule.initCameraData(this.TreeDataPool.selectedNode.id, this.nodeDevId) this.$refs.sepRule.showRules(this.TreeDataPool.selectedNode.id) } else if (this.TreeDataPool.treeActiveName == "dataStack") { - this.$refs.sepRule.initCameraData(this.DataStackPool.selectedDir.id) + this.$refs.sepRule.initCameraData(this.DataStackPool.selectedDir.id, this.nodeDevId) } } }, -- Gitblit v1.8.0