dongjh hai 1 ano
pai
achega
cccd624a74

+ 4 - 2
src/views/modules_guAn/visualization/modules/ModeInfo.vue

@@ -145,7 +145,8 @@ export default {
           this.template = this.dataList[i].Value
         }
         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) {
           //   this.statusT = 0
           // }
@@ -177,7 +178,8 @@ export default {
           this.humidity = this.dataList[i].Value
         }
         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) {
           //   this.statusH = 0
           // }

+ 2 - 1
src/views/modules_guAn/visualization/modules/info3D.vue

@@ -72,7 +72,8 @@ export default {
     getUrl(){
       getAction('/datacoll/webaccess/getFlowUrl').then(res=>{
         if(res.success){
-          this.iframeUrl = res.result
+          // this.iframeUrl = res.result
+          this.iframeUrl = res.result + "&allCacheTime=" + (new Date().getTime())
         }
       })
     },