From 7a2b07ad2b0715c6e2dffb5102cd1d1c05c28d6a Mon Sep 17 00:00:00 2001
From: mark <mark18340872469@163.com>
Date: 星期四, 29 九月 2022 11:14:20 +0800
Subject: [PATCH] 点位信息 all
---
src/views/hashrate/CameraManage/index.vue | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/src/views/hashrate/CameraManage/index.vue b/src/views/hashrate/CameraManage/index.vue
index 19f4137..697b9c2 100644
--- a/src/views/hashrate/CameraManage/index.vue
+++ b/src/views/hashrate/CameraManage/index.vue
@@ -9,7 +9,7 @@
<div class="content">
<div class="column-left" ref="left">
<div class="resize-line" @mousedown="TextWidthChange"></div>
- <CameraLeft :appName="'Camera'" ref="left"></CameraLeft>
+ <CameraLeft :appName="'Camera'" ref="left" style="padding-right:10px"></CameraLeft>
</div>
<div class="right">
<div class="tabs">
@@ -51,8 +51,8 @@
cluster: "",
clusterData: [],
intervalTimer: null,
- leftWith: 0,
- screenHeight: 0
+ screenHeight: 0,
+ nodeDevId: ""
}
},
@@ -63,12 +63,13 @@
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)
}
} else if (this.activeTab === "鍦烘櫙閰嶇疆") {
- this.$refs.sepRule.initCameraData(node.id)
+ this.$refs.sepRule.initCameraData(node.id, node.devId)
if (!this.TreeDataPool.multiple) {
this.$refs.sepRule.showRules(node.id)
}
@@ -109,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)
}
})
},
@@ -145,7 +146,6 @@
},
methods: {
TextWidthChange(e) {
- console.log(1212)
let odivParent = e.currentTarget.parentNode //鑾峰彇鐩爣鐖跺厓绱�
let dx = e.clientX //褰撲綘绗竴娆″崟鍑荤殑鏃跺�欙紝瀛樺偍x杞寸殑鍧愭爣銆�
let dw = odivParent.offsetWidth //瀛樺偍榛樿鐨刣iv鐨勫搴︺��
@@ -161,6 +161,7 @@
odivParent.style.width = this.pdfWidth - odivParent.offsetLeft + "px"
}
}
+
document.onmouseup = (e) => {
document.onmousemove = null
document.onmouseup = null
@@ -195,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)
}
}
},
@@ -315,7 +316,7 @@
.column-left {
position: relative;
margin-right: 24px;
- height: 233vh;
+ height: 160vh;
overflow: auto;
background-color: #fff;
}
--
Gitblit v1.8.0