Explorar el Código

修复数据查询和系统效率分析页面一直刷新问题

baiyanting hace 9 meses
padre
commit
bdd226bacb

+ 23 - 5
src/views/IntegratedAlarm/safe/dataSearch/index.vue

@@ -332,11 +332,29 @@ const getequipmentmodel_list = async () => {
   state.modelListAll = data;
 };
 const modelList = computed(() => {
-  if (state.stationId == "") {
-    return [];
-  } else {
-    return state.modelListAll[state.stationId];
-  }
+  //   if (state.stationId == "") {
+  //     return [];
+  //   } else {
+  //     return state.modelListAll[state.stationId];
+  //   }
+  return [
+    {
+      id: "SEC-W02B-1250kW",
+      nemCode: "SEC-W02B-1250kW",
+      name: "SEC-W02B-1250kW",
+      aname: "SEC-W02B-1250kW",
+      description: "DI",
+      powerProduction: 1250,
+      windturbineManufacturerId: "SHDQ_MF",
+      photo: null,
+      unit: null,
+      cutinwindSpeed: 3,
+      ratedwindSpeed: 11,
+      cutoutwindSpeed: "25",
+      sweptArea: 5800,
+      equipmentCategory: "F",
+    },
+  ];
 });
 //get 风机机组
 const getWindturbineList = async () => {

+ 4 - 1
src/views/economicsOperation/photovoltaicAnalyse/prAnalyse/index.vue

@@ -227,7 +227,10 @@ export default {
             return {
               ...i,
               prhbzzl: i.prhbzzl ? i.prhbzzl.toFixed(2) : i.prhbzzl,
-              prtbzzl: i.prtbzzl ? i.prtbzzl.toFixed(2) : i.prtbzzl,
+              prtbzzl:
+                i.prtbzzl && typeof i.prtbzzl == "number"
+                  ? i.prtbzzl.toFixed(2)
+                  : i.prtbzzl,
             };
           });
         }