|
|
|
@ -574,8 +574,8 @@ |
|
|
|
<!-- 冷冻水流 --> |
|
|
|
<!-- 冷冻水流 --> |
|
|
|
<div class="freezingOutWater">{{ freezingOutWater }}m³/h</div> |
|
|
|
<div class="freezingOutWater">{{ freezingOutWater }}m³/h</div> |
|
|
|
<!-- 冷冻进出水压力 --> |
|
|
|
<!-- 冷冻进出水压力 --> |
|
|
|
<div class="freezingInPre">{{ freezingInPre }}bar</div> |
|
|
|
<div class="freezingInPre">{{ freezingInPre }}KPa</div> |
|
|
|
<div class="freezingOutPre">{{ freezingOutPre }}bar</div> |
|
|
|
<div class="freezingOutPre">{{ freezingOutPre }}KPa</div> |
|
|
|
<!-- 冷却进出水温度 --> |
|
|
|
<!-- 冷却进出水温度 --> |
|
|
|
<div class="coolingInTem">{{ coolingInTem }}℃</div> |
|
|
|
<div class="coolingInTem">{{ coolingInTem }}℃</div> |
|
|
|
<div class="coolingOutTem">{{ coolingOutTem }}℃</div> |
|
|
|
<div class="coolingOutTem">{{ coolingOutTem }}℃</div> |
|
|
|
@ -1819,9 +1819,9 @@ export default { |
|
|
|
} else if (item.collectName === "冷冻回水温度") { |
|
|
|
} else if (item.collectName === "冷冻回水温度") { |
|
|
|
this.freezingInTem = item.collectValue; |
|
|
|
this.freezingInTem = item.collectValue; |
|
|
|
} else if (item.collectName === "冷冻供水压力") { |
|
|
|
} else if (item.collectName === "冷冻供水压力") { |
|
|
|
this.freezingOutPre = item.collectValue; |
|
|
|
this.freezingOutPre = item.collectValue*1000; |
|
|
|
} else if (item.collectName === "冷冻回水压力") { |
|
|
|
} else if (item.collectName === "冷冻回水压力") { |
|
|
|
this.freezingInPre = item.collectValue; |
|
|
|
this.freezingInPre = item.collectValue*1000; |
|
|
|
} else if (item.collectName === "冷却供水温度") { |
|
|
|
} else if (item.collectName === "冷却供水温度") { |
|
|
|
this.coolingOutTem = item.collectValue; |
|
|
|
this.coolingOutTem = item.collectValue; |
|
|
|
} else if (item.collectName === "冷却回水温度") { |
|
|
|
} else if (item.collectName === "冷却回水温度") { |
|
|
|
|