diff --git a/src/views/centerairC/sysMonitor/monitorCenter.vue b/src/views/centerairC/sysMonitor/monitorCenter.vue index a568854..fad67d3 100644 --- a/src/views/centerairC/sysMonitor/monitorCenter.vue +++ b/src/views/centerairC/sysMonitor/monitorCenter.vue @@ -222,8 +222,8 @@
{{ freezingOutWater }}m³/h
-
{{ freezingInPre }}bar
-
{{ freezingOutPre }}bar
+
{{ freezingInPre }}KPa
+
{{ freezingOutPre }}KPa
{{ coolingInTem }}℃
{{ coolingOutTem }}℃
@@ -1605,9 +1605,9 @@ export default { } else if (item.collectName.includes("冷冻回水温度")) { this.freezingInTem = item.collectValue; } else if (item.collectName.includes("冷冻供水压力")) { - this.freezingOutPre = item.collectValue; + this.freezingOutPre = item.collectValue*1000; } else if (item.collectName.includes("冷冻回水压力")) { - this.freezingInPre = item.collectValue; + this.freezingInPre = item.collectValue*1000; } else if (item.collectName.includes("冷却水出水温度")) { this.coolingOutTem = item.collectValue; } else if (item.collectName.includes("冷却水进水温度")) {