|
@@ -76,7 +76,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div :class="topAreaListWs.length != 0 ? 'bot-area' : 'bot-area1'">
|
|
|
- <MeasurePoint title="安全监控测点信息" :timeout="1000" :cards="cardListWs" :charts="chartListWs" />
|
|
|
+ <MeasurePoint ref="measurePointRef" title="安全监控测点信息" :timeout="1000" :cards="cardListWs" :charts="chartListWs" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div style="width: 100%; height: 100%" v-else-if="isShow == 'yjzb'">
|
|
@@ -120,6 +120,8 @@
|
|
|
let activeIndex = ref(0);
|
|
|
let isShow = ref('yjjc');
|
|
|
|
|
|
+ const measurePointRef = ref<MeasurePoint>(null);
|
|
|
+
|
|
|
// https获取监测数据
|
|
|
let timer: null | NodeJS.Timeout = null;
|
|
|
function getMonitor(deviceID, flag?) {
|
|
@@ -241,6 +243,7 @@
|
|
|
activeIndex1.value = ind;
|
|
|
chartListWs.length = 0;
|
|
|
clearTimeout(timer);
|
|
|
+ measurePointRef.value?.switchToDefault();
|
|
|
getMonitor(item.deviceID, true);
|
|
|
}
|
|
|
|