mark
2022-09-27 921d210ab1c7b4159424788e891113c95dcc3505
摄像机管理 时间段 过滤 改bug
1个文件已修改
10 ■■■■■ 已修改文件
src/views/hashrate/CameraManage/index.vue 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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)
        }
      }
    },