Bladeren bron

修改指标样式

baiyanting 1 jaar geleden
bovenliggende
commit
fd3ddc543e

+ 8 - 3
src/components/lightDetial/index.vue

@@ -82,10 +82,15 @@
               <div class="table-item" v-for="(item, ind) in val" :key="ind">
                 <div>{{ item.name }}</div>
                 <div class="table-value">
-                  {{ Number(item.value).toFixed(2) }}
+                  {{
+                    item.name.includes("状态")
+                      ? item.value
+                      : Number(item.value).toFixed(2)
+                  }}
                   <div v-if="item.valueUnit != 'NULL'" class="unit">
                     {{ item.valueUnit }}
                   </div>
+                  <div v-else class="unit"></div>
                 </div>
               </div>
             </div>
@@ -547,9 +552,9 @@ export default {
               font-size: 12px;
               font-family: Source Han Sans SC;
               font-weight: 400;
-              color: #606769;
+              color: #817c7c;
               margin-left: 5px;
-            //   width: 40px;
+              width: 40px;
             }
 
             &.round {

+ 8 - 3
src/components/windDetail/index.vue

@@ -282,10 +282,15 @@
               <div class="table-item" v-for="(item, ind) in val" :key="ind">
                 <div>{{ item.name }}</div>
                 <div class="table-value">
-                  {{ Number(item.value).toFixed(2) }}
+                  {{
+                    item.name.includes("状态")
+                      ? item.value
+                      : Number(item.value).toFixed(2)
+                  }}
                   <div v-if="item.valueUnit != 'NULL'" class="unit">
                     {{ item.valueUnit }}
                   </div>
+                  <div v-else class="unit"></div>
                 </div>
               </div>
             </div>
@@ -954,9 +959,9 @@ export default {
                 font-size: 12px;
                 font-family: Source Han Sans SC;
                 font-weight: 400;
-                color: #606769;
+                color: #817c7c;
                 margin-left: 5px;
-                // width: 40px;
+                width: 40px;
               }
 
               &.round {

+ 2 - 2
src/components/zbDialog/index.vue

@@ -1,5 +1,5 @@
 <template>
-  <el-dialog v-model="dialogVisible" width="80%" top="80px">
+  <el-dialog v-model="dialogVisible" width="60%" top="120px">
     <template #title>
       <div class="dialog-title">
         <div class="title">
@@ -9,7 +9,7 @@
     </template>
     <div
       class="dialog-body"
-      :style="text == 'single' ? 'height: 700px' : 'height: 800px'"
+      :style="text == 'single' ? 'height: 700px' : 'height: 600px'"
     >
       <img class="dialog-img" src="@/assets/imgs/dialog.png" />
       <div class="dialog-form">

+ 5 - 5
src/views/stateMonitor/factoryMonitor/photovoltaic/lightDataTarget/index.vue

@@ -218,31 +218,31 @@ export default {
       },
       {
         name: "日发电量",
-        valueUnit: "",
+        valueUnit: "万kWh",
         uniformCode: "AI121",
         width: "150",
       },
       {
         name: "月发电量",
-        valueUnit: "",
+        valueUnit: "万kWh",
         uniformCode: "AIG072",
         width: "150",
       },
       {
         name: "年发电量",
-        valueUnit: "",
+        valueUnit: "万kWh",
         uniformCode: "AIG063",
         width: "150",
       },
       {
         name: "总发电量",
-        valueUnit: "",
+        valueUnit: "万kWh",
         uniformCode: "AIG095",
         width: "150",
       },
       {
         name: "有功功率",
-        valueUnit: "",
+        valueUnit: "MW",
         uniformCode: "AI114",
         width: "150",
       },