|
@@ -145,7 +145,8 @@ export default {
|
|
this.template = this.dataList[i].Value
|
|
this.template = this.dataList[i].Value
|
|
}
|
|
}
|
|
if (this.dataList[i].Name == '温度输出率') {
|
|
if (this.dataList[i].Name == '温度输出率') {
|
|
- this.outputT = (this.dataList[i].Value * 100).toFixed(0)
|
|
|
|
|
|
+ this.outputT = this.dataList[i].Value
|
|
|
|
+ // this.outputT = (this.dataList[i].Value * 100).toFixed(0)
|
|
// if (this.outputT >0 && this.outputT <100) {
|
|
// if (this.outputT >0 && this.outputT <100) {
|
|
// this.statusT = 0
|
|
// this.statusT = 0
|
|
// }
|
|
// }
|
|
@@ -177,7 +178,8 @@ export default {
|
|
this.humidity = this.dataList[i].Value
|
|
this.humidity = this.dataList[i].Value
|
|
}
|
|
}
|
|
if (this.dataList[i].Name == '湿度输出率') {
|
|
if (this.dataList[i].Name == '湿度输出率') {
|
|
- this.outputH = (this.dataList[i].Value * 100).toFixed(0)
|
|
|
|
|
|
+ this.outputH = this.dataList[i].Value
|
|
|
|
+ // this.outputH = (this.dataList[i].Value * 100).toFixed(0)
|
|
// if (this.outputH >0 && this.outputH <100) {
|
|
// if (this.outputH >0 && this.outputH <100) {
|
|
// this.statusH = 0
|
|
// this.statusH = 0
|
|
// }
|
|
// }
|