|
@@ -217,6 +217,7 @@
|
|
|
: "0.00"
|
|
|
}}
|
|
|
</div>
|
|
|
+ <!-- <input style="width: 200px" :value="val.power" /> -->
|
|
|
</div>
|
|
|
<div class="right-item">
|
|
|
<i
|
|
@@ -242,6 +243,18 @@
|
|
|
: "0.00"
|
|
|
}}
|
|
|
</div>
|
|
|
+ <!-- <input
|
|
|
+ style="width: 200px"
|
|
|
+ :value="
|
|
|
+ value.czlx == '-1'
|
|
|
+ ? val.speed
|
|
|
+ ? Number(val.speed)?.toFixed(2)
|
|
|
+ : '0.00'
|
|
|
+ : val.current
|
|
|
+ ? Number(val.current)?.toFixed(2)
|
|
|
+ : '0.00'
|
|
|
+ "
|
|
|
+ /> -->
|
|
|
</div>
|
|
|
<div class="right-item">
|
|
|
<i
|
|
@@ -267,6 +280,18 @@
|
|
|
: "0.00"
|
|
|
}}
|
|
|
</div>
|
|
|
+ <!-- <input
|
|
|
+ style="width: 200px"
|
|
|
+ :value="
|
|
|
+ value.czlx == '-1'
|
|
|
+ ? val.transfer
|
|
|
+ ? Number(val.transfer)?.toFixed(2)
|
|
|
+ : '0.00'
|
|
|
+ : val.voltage
|
|
|
+ ? Number(val.voltage)?.toFixed(2)
|
|
|
+ : '0.00'
|
|
|
+ "
|
|
|
+ /> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -701,12 +726,12 @@ export default {
|
|
|
if (Object.values(res.data.data).length) {
|
|
|
this.BASE.closeLoading();
|
|
|
let sourceMap = res.data.data;
|
|
|
- // sourceMap.powerVos.forEach((item, index) => {
|
|
|
- // item["switch" + index] = true;
|
|
|
- // });
|
|
|
+
|
|
|
this.sourceMap = sourceMap;
|
|
|
- if (this.fillFjzt) {
|
|
|
+ if (this.fillFjzt != "all") {
|
|
|
this.handleClick(this.fillFjzt);
|
|
|
+ } else {
|
|
|
+ this.showMatrixList = this.sourceMap.powerVos;
|
|
|
}
|
|
|
} else {
|
|
|
this.sourceMap = {};
|
|
@@ -714,6 +739,30 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+
|
|
|
+ chunkArray(arr, chunkSize) {
|
|
|
+ // 验证输入参数
|
|
|
+ if (
|
|
|
+ !Array.isArray(arr) ||
|
|
|
+ typeof chunkSize !== "number" ||
|
|
|
+ chunkSize <= 0
|
|
|
+ ) {
|
|
|
+ throw new Error(
|
|
|
+ "Invalid input. Please provide a valid array and a positive chunk size."
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ // 初始化二维数组
|
|
|
+ const result = [];
|
|
|
+
|
|
|
+ // 遍历原始数组,按照指定长度分组
|
|
|
+ for (let i = 0; i < arr.length; i += chunkSize) {
|
|
|
+ result.push(arr.slice(i, i + chunkSize));
|
|
|
+ }
|
|
|
+
|
|
|
+ return result;
|
|
|
+ },
|
|
|
+
|
|
|
// 点击切换状态
|
|
|
handleClick(val) {
|
|
|
this.fillFjzt = val;
|
|
@@ -726,6 +775,27 @@ export default {
|
|
|
},
|
|
|
// 状态切换改变数据
|
|
|
handleClickWind() {
|
|
|
+ // const tempWtArray = this.BASE.deepCopy(sourceMap.powerVos);
|
|
|
+
|
|
|
+ // tempWtArray?.forEach((ele) => {
|
|
|
+ // ele.spWtlist = this.chunkArray(ele.wtlist, 100);
|
|
|
+ // });
|
|
|
+
|
|
|
+ // sourceMap.powerVos.forEach((ele) => {
|
|
|
+ // ele.wtlist = [];
|
|
|
+ // });
|
|
|
+
|
|
|
+ // for (let i = 0; i < sourceMap.powerVos.length; i++) {
|
|
|
+ // const ele = sourceMap.powerVos[i];
|
|
|
+ // for (let j = 0; j < tempWtArray[i]?.spWtlist?.length; j++) {
|
|
|
+ // setTimeout(() => {
|
|
|
+ // ele.wtlist = ele.wtlist.concat(tempWtArray[i].spWtlist[j]);
|
|
|
+ // }, 500);
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+
|
|
|
+ // console.log(11, tempWtArray);
|
|
|
+ // console.log(22, sourceMap);
|
|
|
this.loading = false;
|
|
|
this.showMatrixList = JSON.parse(JSON.stringify(this.sourceMap.powerVos));
|
|
|
let matrixList = this.sourceMap.powerVos;
|
|
@@ -936,7 +1006,15 @@ export default {
|
|
|
} else {
|
|
|
this.showMatrixList = this.sourceMap.powerVos;
|
|
|
}
|
|
|
+ const tempWtArray = this.chunkArray(this.showMatrixList, 3);
|
|
|
+ this.showMatrixList = tempWtArray[0];
|
|
|
+ for (let i = 1; i < tempWtArray.length; i++) {
|
|
|
+ setTimeout(() => {
|
|
|
+ this.showMatrixList.push(...tempWtArray[i]);
|
|
|
+ }, 5);
|
|
|
+ }
|
|
|
},
|
|
|
+
|
|
|
// 点击左侧数据弹出曲线
|
|
|
handleLeftClick(wt, type, wpid) {
|
|
|
this.displayMatrix = true;
|