Browse Source

Merge remote-tracking branch 'guAn_client/master'

yuhan 1 year ago
parent
commit
63194c2b19
1 changed files with 6 additions and 1 deletions
  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
+        }
       }
     }
   }