瀏覽代碼

外因火灾过滤,通风预警名称修改

lxh 1 月之前
父節點
當前提交
dfa2167d80

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

@@ -91,7 +91,7 @@ async function getMenuList() {
   let res = await sysTypeWarnList({ type: 'fire' });
   if (res.length != 0) {
     menuList.length = 0;
-    menuList1.external = res.external;
+    menuList1.external = res.external.filter(v=>v.strtype!='sys_surface_caimei');
     menuList1.internal = res.internal;
     menuList1.info = res.info;
     if (!activeIndex.value && menuList1.internal && menuList1.internal.length > 0) {

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

@@ -226,7 +226,7 @@
       res.forEach((el) => {
         menuList.push({
           name: el.deviceName,
-          warn: el.warnDes.indexOf('预警')!=-1 ? '风不足' : el.warnDes,
+          warn: el.warnDes.indexOf('预警')!=-1 ? '风不足' : el.warnDes,
           deviceID: el.deviceID,
           strtype: el.deviceType,
           detail:el.detail

+ 1 - 1
src/views/vent/monitorManager/camera/index.vue

@@ -421,9 +421,9 @@
   }
 
   onMounted(async () => {
+    await getCameraDevKindList();
     await getVideoAddrs();
     // getTreeList()
-    getCameraDevKindList();
     getVideo();
   });