Browse Source

分站管理修改提交

lxh 3 months ago
parent
commit
c107739c5a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/vent/safetyList/index.vue

+ 2 - 1
src/views/vent/safetyList/index.vue

@@ -195,7 +195,8 @@ async function getStationList() {
       v.linkstatus = v.linkId
       v.linkstatusC = v.linkstatus == '0' ? '待启用' : v.linkstatus == '1' ? '连接' : '断开'
       v.updateTime = v.time
-      v.valueJc = `风向:${v.forward || ''},风量:${v.m3 || ''}m³/min,风速:${v.windSpeed || ''}m/s,气压:${v.pa || ''}kPa,温度:${v.temperature || ''}℃,湿度:${v.humidity || ''}%,断面积:${v.area || ''}㎡`
+      v.forward=v.forward=='1' ? '正风' : v.forward=='2' ? '反风' : ''
+      v.valueJc = `风向:${v.forward || ''},风量:${v.m3 || ''}m³/min,风速:${v.windSpeed || ''}m/s,气压:${v.difPress || ''}Pa,温度:${v.temperature || ''}℃,湿度:${v.humidity || ''}%,断面积:${v.area || ''}㎡`
 
     })
   })