Преглед на файлове

2023-03-14 fix

1. fix pv && wswind -> pv || wswind
moccus преди 1 година
родител
ревизия
0e94157f59
променени са 2 файла, в които са добавени 96 реда и са изтрити 887 реда
  1. 91 885
      src/components/check/areaCard.vue
  2. 5 2
      src/components/control/controlAllArea.vue

Файловите разлики са ограничени, защото са твърде много
+ 91 - 885
src/components/check/areaCard.vue


+ 5 - 2
src/components/control/controlAllArea.vue

@@ -853,8 +853,11 @@ export default {
         let wswind = JSON.parse(window.sessionStorage.getItem('windSbq'))
         let pv = JSON.parse(window.sessionStorage.getItem('pvSbq'))
         let msg = {}
-        if (wswind && pv) {
-            msg = {...wswind, ...pv}
+        if (wswind || pv) {
+            msg = {...wswind}
+            if(pv){
+              msg = {...msg, ...pv}
+            }
             this.windturbinelist = msg;
             this.$store.commit("windturbinelist", msg);
             this.dataList = [];