|
@@ -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;
|