Jelajahi Sumber

纯水机监测无修正值不处理小数位数

shenqilong 7 bulan lalu
induk
melakukan
b14fef3627
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      src/views/component/facility/facilityData.vue

+ 1 - 1
src/views/component/facility/facilityData.vue

@@ -389,7 +389,7 @@ export default {
             if (item.fixValue) {
               item.result = (+item.fixValue + +item.value).toFixed(this.config)
             } else {
-              item.result = (+item.value).toFixed(this.config)
+              item.result = (+item.value)//无修正值时不处理小数位
             }
           }