Browse Source

[Fix 0000] 修复瓦斯报警预测曲线更新方式错误

ruienger 2 months ago
parent
commit
6602b7bffc

+ 8 - 0
src/views/vent/monitorManager/alarmMonitor/common/measurePoint.vue

@@ -67,6 +67,10 @@
   }>();
 
   const shown = ref('default');
+
+  function switchToDefault() {
+    shown.value = 'default';
+  }
   // const chartsConfig = ref<
   //   {
   //     label: string;
@@ -134,6 +138,10 @@
   //   },
   //   { immediate: true, deep: true }
   // );
+
+  defineExpose({
+    switchToDefault,
+  });
 </script>
 <style lang="less">
   @import '/@/design/theme.less';

+ 4 - 1
src/views/vent/monitorManager/alarmMonitor/warn/gasWarn.vue

@@ -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);
   }