Kaynağa Gözat

指标增加单位

baiyanting 1 yıl önce
ebeveyn
işleme
ac72848807

+ 4 - 2
src/components/lightDetial/index.vue

@@ -83,7 +83,9 @@
                 <div>{{ item.name }}</div>
                 <div class="table-value">
                   {{ Number(item.value).toFixed(2) }}
-                  <!-- <div class="unit">{{ item.valueUnit }}</div> -->
+                  <div v-if="item.valueUnit != 'NULL'" class="unit">
+                    {{ item.valueUnit }}
+                  </div>
                 </div>
               </div>
             </div>
@@ -547,7 +549,7 @@ export default {
               font-weight: 400;
               color: #606769;
               margin-left: 5px;
-              width: 40px;
+            //   width: 40px;
             }
 
             &.round {

+ 4 - 2
src/components/windDetail/index.vue

@@ -283,7 +283,9 @@
                 <div>{{ item.name }}</div>
                 <div class="table-value">
                   {{ Number(item.value).toFixed(2) }}
-                  <!-- <div class="unit">{{ item.valueUnit }}</div> -->
+                  <div v-if="item.valueUnit != 'NULL'" class="unit">
+                    {{ item.valueUnit }}
+                  </div>
                 </div>
               </div>
             </div>
@@ -954,7 +956,7 @@ export default {
                 font-weight: 400;
                 color: #606769;
                 margin-left: 5px;
-                width: 40px;
+                // width: 40px;
               }
 
               &.round {

+ 5 - 5
src/views/stateMonitor/factoryMonitor/windPowerPlant/DataTarget/index.vue

@@ -209,31 +209,31 @@ export default {
       { name: "设备容量", uniformCode: "SBXH", valueUnit: "MW", width: "80" },
       {
         name: "风速",
-        valueUnit: null,
+        valueUnit: 'm/s',
         uniformCode: "AI066",
         width: "150",
       },
       {
         name: "风向",
-        valueUnit: null,
+        valueUnit: '°',
         uniformCode: "AI067",
         width: "150",
       },
       {
         name: "有功功率",
-        valueUnit: null,
+        valueUnit: 'MW',
         uniformCode: "AI114",
         width: "150",
       },
       {
         name: "机舱温度",
-        valueUnit: null,
+        valueUnit: '℃',
         uniformCode: "AI074",
         width: "150",
       },
       {
         name: "发电机转速",
-        valueUnit: null,
+        valueUnit: 'rpm',
         uniformCode: "AI060",
         width: "150",
       },

+ 5 - 5
src/views/stateMonitor/zhzb/zhzb.vue

@@ -276,31 +276,31 @@ export default {
           },
           {
             name: "日发电量",
-            valueUnit: null,
+            valueUnit: "万kWh",
             uniformCode: "RFDL",
             width: "150",
           },
           {
             name: "月发电量",
-            valueUnit: null,
+            valueUnit: "万kWh",
             uniformCode: "YFDL",
             width: "150",
           },
           {
             name: "年发电量",
-            valueUnit: null,
+            valueUnit: "万kWh",
             uniformCode: "NFDL",
             width: "150",
           },
           {
             name: "实时总功率",
-            valueUnit: null,
+            valueUnit: "MW",
             uniformCode: "SSZGL",
             width: "150",
           },
           {
             name: "实时平均风速",
-            valueUnit: null,
+            valueUnit: "m/s",
             uniformCode: "SSPJFS",
             width: "150",
           },