diff --git a/src/views/OperationalOverview/coldBoard.vue b/src/views/OperationalOverview/coldBoard.vue index 167e68c8..57703754 100644 --- a/src/views/OperationalOverview/coldBoard.vue +++ b/src/views/OperationalOverview/coldBoard.vue @@ -1,7 +1,7 @@ @@ -381,12 +381,12 @@ export default { }) this.$refs['ISRAChart'].updateChart(chartData) } else if (this.SJGWsData.type === 'equipment') { - this.realEqList = this.SJGWsData.detData.map((ele, index) => [ + this.realEqList = this.SJGWsData.detData.map((item, index) => [ // console.log(item) `${index + 1 || ''} `, - `${ele.name || ''}`, - `${ele.run || ''}`, + `${item.name || ''}`, + `${item.run || ''}`, ]) } this.realEqConfig.data = this.realEqList diff --git a/src/views/OperationalOverview/processingBoard.vue b/src/views/OperationalOverview/processingBoard.vue index 656f274b..69629afe 100644 --- a/src/views/OperationalOverview/processingBoard.vue +++ b/src/views/OperationalOverview/processingBoard.vue @@ -2,7 +2,7 @@ * @Author: zwq * @Date: 2021-07-19 15:18:30 * @LastEditors: zhp - * @LastEditTime: 2024-03-26 15:43:27 + * @LastEditTime: 2024-03-26 17:57:44 * @Description: -->