baiyanting 1 год назад
Родитель
Сommit
7bd6971498

Разница между файлами не показана из-за своего большого размера
+ 3575 - 0
src/utills/mock-yangquandianzhan.js


+ 7 - 1
src/views/stateMonitor/factoryMonitor/components/headerButton.vue

@@ -244,7 +244,13 @@ export default {
         type: this.type,
       });
       if (data.data.length) {
-        this.allPowerStation = data.data;
+        this.allPowerStation =
+          this.type == -2
+            ? [
+                ...data.data,
+                { aname: "阳泉城新电站",nemCode:'SXJ_KGDL_CX_GDC_STA' },
+              ]
+            : data.data;
         let index = Object.keys(this.localWpinfo).length
           ? this.allPowerStation.findIndex(
               (item) => item.nemCode == this.localWpinfo.wpid

+ 26 - 18
src/views/stateMonitor/factoryMonitor/photovoltaic/lightMatrix/index.vue

@@ -715,27 +715,35 @@ export default {
     // 获取单场站矩阵数据
     getSingleMatrix(first) {
       if (first) {
-        this.BASE.showLoading();
+        if (this.stationCode == "SXJ_KGDL_CX_GDC_STA") {
+          this.BASE.closeLoading();
+        } else {
+          this.BASE.showLoading();
+        }
       }
       if (this.stationCode) {
-        api
-          .matrixSinglePushFL({ wpid: this.stationCode, type: this.tab })
-          .then(({ data }) => {
-            if (
-              Object.keys(data).indexOf(`${this.tab.toLowerCase()}zqsl`) !=
-                -1 &&
-              data.qtsj.czid == this.stationCode
-            ) {
-              this.BASE.closeLoading();
-              this.matrixState = data.mxzt;
-              this.matrixOther = data.qtsj;
-              this.singleMatrixInfo = data.ZQ;
-              if (this.current) {
-                this.handleClick(this.current);
+        if (this.stationCode == "SXJ_KGDL_CX_GDC_STA") {
+          this.singleMatrixInfo = {};
+        } else {
+          api
+            .matrixSinglePushFL({ wpid: this.stationCode, type: this.tab })
+            .then(({ data }) => {
+              if (
+                Object.keys(data).indexOf(`${this.tab.toLowerCase()}zqsl`) !=
+                  -1 &&
+                data.qtsj.czid == this.stationCode
+              ) {
+                this.BASE.closeLoading();
+                this.matrixState = data.mxzt;
+                this.matrixOther = data.qtsj;
+                this.singleMatrixInfo = data.ZQ;
+                if (this.current) {
+                  this.handleClick(this.current);
+                }
               }
-            }
-            // this.BASE.closeLoading();
-          });
+              // this.BASE.closeLoading();
+            });
+        }
       }
     },
     // 点击左侧数据弹出详情

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

@@ -316,6 +316,7 @@ import SvgIcon from "@com/coms/icon/svg-icon.vue";
 import LightDetail from "@/components/lightDetial/index.vue";
 import api from "@/api/cockpit/matrix/index.js";
 import dayjs from "dayjs";
+import { dataObj } from "@/utills/mock-yangquandianzhan.js";
 import { deepClone, findUpColor } from "@/utills/func.js";
 export default {
   name: "lightMatrixMonitor",
@@ -327,6 +328,7 @@ export default {
   },
   data() {
     return {
+      dataObj,
       units: [],
       unitDatas: [{ flag: false, min: 0, max: 0, codex: 0 }],
       color: [
@@ -703,13 +705,20 @@ export default {
     // 获取单场站矩阵数据
     getSingleMatrix() {
       if (this.stationCode) {
-        api.matrixSinglePush({ wpid: this.stationCode }).then(({ data }) => {
-          let resData = data.data;
-          this.singleMatrixInfo = resData;
+        if (this.stationCode == "SXJ_KGDL_CX_GDC_STA") {
+          this.singleMatrixInfo = this.dataObj;
           if (this.current) {
             this.handleClick(this.current);
           }
-        });
+        } else {
+          api.matrixSinglePush({ wpid: this.stationCode }).then(({ data }) => {
+            let resData = data.data;
+            this.singleMatrixInfo = resData;
+            if (this.current) {
+              this.handleClick(this.current);
+            }
+          });
+        }
       }
     },
     // 点击左侧数据弹出曲线
@@ -1635,7 +1644,7 @@ p {
           height: 50px;
 
           .card-left {
-            width: 50px;
+            width: 65px;
             height: 100%;
             display: flex;
             flex-direction: column;