浏览代码

设备基本运行情况优化

wyh 1 年之前
父节点
当前提交
aa26f9b283
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      src/views/modules_guAn/visualization/modules/EquipmentInfo.vue

+ 6 - 1
src/views/modules_guAn/visualization/modules/EquipmentInfo.vue

@@ -135,7 +135,9 @@ export default {
       // 起始湿度
       startH: '',
       // 运行方式设定
-      runStatus: ''
+      runStatus: '',
+      // 报警信息
+      information: ''
     }
   },
   watch: {
@@ -177,6 +179,9 @@ export default {
         if (this.dataList[i].Name == '运行方式设定') {
           this.runStatus = this.dataList[i].Value
         }
+        if (this.dataList[i].Name == '预计结束时间-试验信息') {
+          this.information = this.dataList[i].Value
+        }
       }
     }
   }