From c09e6f54ddcc34d9f0de109f157ffdeb92d054c4 Mon Sep 17 00:00:00 2001 From: guanj Date: Fri, 16 Jan 2026 15:54:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=8B=E8=AF=95=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../listOfMainMonitoringPoints/index.vue | 2 +- .../cockpit/monitoringPointList/index.vue | 9 +++- src/components/echarts/rmsboxi.vue | 8 +-- src/components/echarts/shushiboxi.vue | 10 ++-- src/views/govern/device/control/index.vue | 1 + .../govern/device/control/moduleData.vue | 2 +- .../tabs/components/waveFormAnalysis.vue | 7 +-- .../govern/device/control/tabs/event.vue | 5 +- src/views/govern/log/debug.vue | 49 ++++++++++++++----- src/views/govern/log/opera.vue | 45 +++++++++++++---- src/views/govern/manage/basic/version.vue | 2 +- src/views/govern/manage/gplot/popupEdit.vue | 2 +- .../govern/monitorRecall/eventRecall.vue | 7 +-- .../govern/monitorRecall/steadyRecall.vue | 10 ++-- src/views/govern/sensitiveLoadMange/index.vue | 2 +- 15 files changed, 111 insertions(+), 50 deletions(-) diff --git a/src/components/cockpit/listOfMainMonitoringPoints/index.vue b/src/components/cockpit/listOfMainMonitoringPoints/index.vue index 1c0bff9..47411d5 100644 --- a/src/components/cockpit/listOfMainMonitoringPoints/index.vue +++ b/src/components/cockpit/listOfMainMonitoringPoints/index.vue @@ -172,7 +172,7 @@ const setEchart = () => { tooltip: { trigger: 'axis', formatter: function (params: any) { - let result = params[0].name + let result = params[0].axisValueLabel params.forEach((item: any) => { if (item.seriesName === indicatorName) { // 对于电能质量指标,格式化Y轴值显示 diff --git a/src/components/cockpit/monitoringPointList/index.vue b/src/components/cockpit/monitoringPointList/index.vue index 32d36cf..326e21e 100644 --- a/src/components/cockpit/monitoringPointList/index.vue +++ b/src/components/cockpit/monitoringPointList/index.vue @@ -156,17 +156,21 @@ const tableStore: any = new TableStore({ 停运: 'danger', 退运: 'danger', 运行: 'success', + 在线: 'success', 中断: 'warning', + 离线: 'danger', 检修: 'warning', 调试: 'warning', null: 'info' }, replaceValue: { 运行: '运行', + 在线: '在线', 退运: '退运', 停运: '停运', 中断: '中断', 检修: '检修', + 离线: '离线', 调试: '调试', null: '/' } @@ -183,7 +187,10 @@ const tableStore: any = new TableStore({ { title: '电压等级', field: 'volGrade', - minWidth: '80' + minWidth: '80', + formatter: (row: any) => { + return row.cellValue==0?'/': row.cellValue+'kV' || '/' + } }, { title: '是否治理', diff --git a/src/components/echarts/rmsboxi.vue b/src/components/echarts/rmsboxi.vue index bf201e2..ea52dd7 100644 --- a/src/components/echarts/rmsboxi.vue +++ b/src/components/echarts/rmsboxi.vue @@ -1,8 +1,8 @@