From cc47d9b02c22f61915cf2687ceb834b5816ef56a Mon Sep 17 00:00:00 2001 From: guanj Date: Tue, 29 Jul 2025 19:00:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=91=E5=8D=97=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E7=94=A8=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 9 +- src/api/device-boot/Business.ts | 16 + src/components/table/index.vue | 5 +- src/components/tree/pqs/Terminal.vue | 49 +- src/utils/mqtt.ts | 441 +++++++++--------- src/utils/webSocketClient.ts | 4 +- src/views/pqs/business/log/frontLog/index.vue | 88 ++++ .../pqs/business/terminal/deviceter/index.vue | 4 +- .../area/TransientEventList/index.vue | 10 +- .../area/onlinerate/index.vue | 42 +- .../online/wentaishujufenxi/index.vue | 74 ++- .../online/wentaizhibiaohegelv/index.vue | 28 +- .../online/xiebopingpu/index.vue | 5 + .../alarmCleaning/components/alarmDetails.vue | 14 +- .../cleaning/components/anomalyDetails.vue | 10 +- .../Region/components/Compatibility.vue | 8 +- .../voltageSags/Region/statistics/index.vue | 2 + .../dianyazanjiangbiaojimidu/index.vue | 4 +- .../online/eventStudy/index.vue | 14 +- src/views/pqs/voltageSags/overview/index.vue | 2 +- .../pqs/voltageSags/overview/popupEvent.vue | 2 +- src/views/pqs/voltageSags/overview/right.vue | 2 +- 22 files changed, 531 insertions(+), 302 deletions(-) create mode 100644 src/views/pqs/business/log/frontLog/index.vue diff --git a/src/App.vue b/src/App.vue index 238a4a20..e6c8d178 100644 --- a/src/App.vue +++ b/src/App.vue @@ -7,8 +7,15 @@ diff --git a/src/views/pqs/business/terminal/deviceter/index.vue b/src/views/pqs/business/terminal/deviceter/index.vue index f25783cc..9815aae1 100644 --- a/src/views/pqs/business/terminal/deviceter/index.vue +++ b/src/views/pqs/business/terminal/deviceter/index.vue @@ -54,8 +54,8 @@ - - 当前操作节点: + + 当前操作节点:
diff --git a/src/views/pqs/harmonicMonitoring/area/TransientEventList/index.vue b/src/views/pqs/harmonicMonitoring/area/TransientEventList/index.vue index 577c586e..d7dea216 100644 --- a/src/views/pqs/harmonicMonitoring/area/TransientEventList/index.vue +++ b/src/views/pqs/harmonicMonitoring/area/TransientEventList/index.vue @@ -120,7 +120,7 @@ const tableStore = new TableStore({ { field: 'gdName', title: '供电公司', minWidth: '120' }, { field: 'subName', title: '变电站', minWidth: '150' }, { field: 'ip', title: '网络参数', minWidth: '110' }, - { field: 'scale', title: '电压等级', minWidth: '90' }, + { field: 'scale', title: '电压等级', minWidth: '110' }, { field: 'advanceType', title: '暂降类型', @@ -140,7 +140,7 @@ const tableStore = new TableStore({ { field: 'eventType', title: '暂态统计类型', - minWidth: '100', + minWidth: '120', formatter: (row: any) => { return eventList.filter(item => item.id === row.cellValue)[0]?.name } @@ -153,7 +153,7 @@ const tableStore = new TableStore({ { field: 'featureAmplitude', title: '暂降幅值(%)', - minWidth: '90', + minWidth: '110', formatter: (row: any) => { return (row.cellValue * 100).toFixed(2) } @@ -161,14 +161,14 @@ const tableStore = new TableStore({ { field: 'eventDescribe', title: '暂降深度(%)', - minWidth: '90', + minWidth: '110', formatter: (row: any) => { let data: any = (100 - row.row.featureAmplitude * 100).toFixed(2) return data >= 0 ? data : '/' } }, - { field: 'duration', title: '持续时间(s)', minWidth: '80' }, + { field: 'duration', title: '持续时间(s)', minWidth: '100' }, { title: '操作', diff --git a/src/views/pqs/harmonicMonitoring/area/onlinerate/index.vue b/src/views/pqs/harmonicMonitoring/area/onlinerate/index.vue index 977fd8ff..ff80618d 100644 --- a/src/views/pqs/harmonicMonitoring/area/onlinerate/index.vue +++ b/src/views/pqs/harmonicMonitoring/area/onlinerate/index.vue @@ -252,27 +252,27 @@ const tableStore = new TableStore({ return row.cellValue == 3.14159 ? '暂无数据' : row.cellValue.toFixed(2) } }, - { - title: '评估', - field: 'valueOver', - align: 'center', - effect: 'dark', - render: 'tag', - custom: { - null: 'info', - 0: 'danger', - 1: 'success', - 2: 'primary', - 3: 'danger' - }, - replaceValue: { - null: '暂无评估', - 0: '暂无评估', - 1: '优秀', - 2: '合格', - 3: '不合格' - } - } + // { + // title: '评估', + // field: 'valueOver', + // align: 'center', + // effect: 'dark', + // render: 'tag', + // custom: { + // null: 'info', + // 0: 'danger', + // 1: 'success', + // 2: 'primary', + // 3: 'danger' + // }, + // replaceValue: { + // null: '暂无评估', + // 0: '暂无评估', + // 1: '优秀', + // 2: '合格', + // 3: '不合格' + // } + // } ], beforeSearchFun: () => { tableStore.table.params.deptIndex = formData.value.deptIndex diff --git a/src/views/pqs/harmonicMonitoring/monitoringPoint/online/wentaishujufenxi/index.vue b/src/views/pqs/harmonicMonitoring/monitoringPoint/online/wentaishujufenxi/index.vue index 56dd0684..b0b8d307 100644 --- a/src/views/pqs/harmonicMonitoring/monitoringPoint/online/wentaishujufenxi/index.vue +++ b/src/views/pqs/harmonicMonitoring/monitoringPoint/online/wentaishujufenxi/index.vue @@ -98,7 +98,9 @@ import TableStore from '@/utils/tableStore' import waveForm from '@/components/echarts/waveForm.vue' import html2canvas from 'html2canvas' import { ElMessage } from 'element-plus' +import { yMethod } from '@/utils/echartMethod' import * as echarts from 'echarts' // 全引入 +import { min } from 'xe-utils' const datePickerRef = ref() const monitoringPoint = useMonitoringPoint() const checked = ref(monitoringPoint.state.showCheckBox) @@ -131,6 +133,7 @@ const tableStore = new TableStore({ method: 'POST', column: [] }) +const tableData = ref([]) const tableHeaderRef = ref() const options = ref({}) const traceability = ref([]) @@ -201,6 +204,7 @@ const init = () => { } const shujuchuli = (res: any) => { let shujuData = res.data + tableData.value = res.data shujuData.forEach((item: any, i: number) => { //判断是否存在暂降点 @@ -269,7 +273,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], maxValue: item.maxValue.toFixed(3), @@ -321,7 +327,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], maxValue: item.maxValue.toFixed(3), @@ -337,7 +345,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: null, @@ -407,7 +417,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], maxValue: item.maxValue.toFixed(3), @@ -450,7 +462,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], maxValue: item.maxValue.toFixed(3), @@ -465,7 +479,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: null, @@ -530,7 +546,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], maxValue: item.maxValue.toFixed(3), @@ -573,7 +591,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], maxValue: item.maxValue.toFixed(3), @@ -588,7 +608,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: null, @@ -653,7 +675,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: item.minValue > 1 ? (item.minValue - 0.5).toFixed(3) : item.minValue.toFixed(3), @@ -696,7 +720,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: item.minValue.toFixed(3), @@ -710,7 +736,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: null, @@ -774,7 +802,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], maxValue: item.maxValue.toFixed(3), @@ -814,7 +844,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], maxValue: item.maxValue.toFixed(3), @@ -830,7 +862,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: null, @@ -890,7 +924,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], maxValue: item.maxValue.toFixed(3), @@ -927,7 +963,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: item.minValue.toFixed(3), @@ -941,7 +979,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: null, @@ -1001,7 +1041,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: item.minValue.toFixed(3), @@ -1038,7 +1080,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: item.minValue.toFixed(3), @@ -1052,7 +1096,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: null, @@ -1107,7 +1153,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: item.minValue.toFixed(3), @@ -1138,7 +1186,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: item.minValue.toFixed(3), @@ -1151,7 +1201,9 @@ const shujuchuli = (res: any) => { let shuju = { id: 'qushifenx' + i, title: item.lineName + '--' + item.targetName, + wiringMethod: item.wiringMethod || '0', targetName: item.targetName, + value: item.value, legend: item.phaiscType, valueName: item.unit[0], minValue: null, @@ -1390,11 +1442,25 @@ const rendering = () => { } const getEcharts = () => { list.value.forEach((item: any, i: number) => { + console.log('🚀 ~ getEcharts ~ item:', item) + + const values = item.value && item.value.length > 0 ? item.value.map(k => k[1]) : [0] + let [min, max] = yMethod([item.maxValue, item.minValue, ...values]) item.option = { backgroundColor: '#fff', title: { left: 'center', - text: item.title + text: item.title, + subtext: + item.wiringMethod == '1' + ? item.targetName == '相电压有效值' + ? '该监测点为三角型接线,相电压有效值没有数据' + : '' + : '', // 副标题 + subtextStyle: { + fontSize: 14, + color: '#ff0000' + } }, tooltip: { trigger: 'axis', @@ -1531,6 +1597,7 @@ const getEcharts = () => { }, xAxis: [ { + name: '时间', type: 'time', axisLine: { show: true, @@ -1556,9 +1623,12 @@ const getEcharts = () => { { type: 'value', - // min: item.minValue, + min: min, + max: max, name: item.valueName, minInterval: 1, + // max:10, + // min:0, // axisLabel: { // interval: 0, // // formatter: function (value: any) { diff --git a/src/views/pqs/harmonicMonitoring/monitoringPoint/online/wentaizhibiaohegelv/index.vue b/src/views/pqs/harmonicMonitoring/monitoringPoint/online/wentaizhibiaohegelv/index.vue index b7f3a2a2..cde84dde 100644 --- a/src/views/pqs/harmonicMonitoring/monitoringPoint/online/wentaizhibiaohegelv/index.vue +++ b/src/views/pqs/harmonicMonitoring/monitoringPoint/online/wentaizhibiaohegelv/index.vue @@ -229,20 +229,20 @@ const init = () => { opacity: 0.35, fontSize: 14 }, - backgroundColor: 'rgba(0,0,0,0.55)' - // formatter: function (params: any) { - // //console.log(params) - // let msg = '' - // msg += params[0].name + '
' - // for (let i in params) { - // if (params[i].data == 1) { - // msg += params[i].seriesName + ': 暂无数据
' - // } else { - // msg += params[i].seriesName + ': ' + params[i].data + '
' - // } - // } - // return msg - // } + backgroundColor: 'rgba(0,0,0,0.55)', + formatter: function (params: any) { + //console.log(params) + let msg = '' + msg += params[0].name + '
' + for (let i in params) { + if (params[i].data == 3.14159) { + msg +=params[i].marker+ params[i].seriesName + ': 暂无数据
' + } else { + msg += params[i].marker+ params[i].seriesName + ': ' + params[i].data + '
' + } + } + return msg + } }, xAxis: { name: '指标类型', diff --git a/src/views/pqs/harmonicMonitoring/monitoringPoint/online/xiebopingpu/index.vue b/src/views/pqs/harmonicMonitoring/monitoringPoint/online/xiebopingpu/index.vue index d75eba8c..11abb116 100644 --- a/src/views/pqs/harmonicMonitoring/monitoringPoint/online/xiebopingpu/index.vue +++ b/src/views/pqs/harmonicMonitoring/monitoringPoint/online/xiebopingpu/index.vue @@ -63,8 +63,10 @@ const init = () => { formData.searchBeginTime = datePickerRef.value.timeValue[0] formData.searchEndTime = datePickerRef.value.timeValue[1] getHarmInHarmData(formData).then((res: any) => { + let xName = '' analysisData.value = [] if (formData.harmState === 1) { + xName = 'A' analysisData.value.push( { name: '谐波电流幅值(A)', @@ -82,6 +84,7 @@ const init = () => { } ) } else { + xName = '%' analysisData.value.push( { name: '谐波电压含有率(%)', @@ -101,10 +104,12 @@ const init = () => { } options.value = { xAxis: { + name: '次数', type: 'category', data: Array.from({ length: 49 }, (_, i) => `${i + 2}次`) }, yAxis: { + name: xName, type: 'value' }, color: ['#2E8B57', '#DAA520'], diff --git a/src/views/pqs/runManage/alarmCleaning/components/alarmDetails.vue b/src/views/pqs/runManage/alarmCleaning/components/alarmDetails.vue index 2b8c476a..b3ddfe2c 100644 --- a/src/views/pqs/runManage/alarmCleaning/components/alarmDetails.vue +++ b/src/views/pqs/runManage/alarmCleaning/components/alarmDetails.vue @@ -29,13 +29,13 @@ {{ (pageNum - 1) * pageSize + rowIndex + 1 }} - - - + + + + + diff --git a/src/views/pqs/runManage/cleaning/components/anomalyDetails.vue b/src/views/pqs/runManage/cleaning/components/anomalyDetails.vue index 54634449..66efcced 100644 --- a/src/views/pqs/runManage/cleaning/components/anomalyDetails.vue +++ b/src/views/pqs/runManage/cleaning/components/anomalyDetails.vue @@ -31,9 +31,13 @@ - - - + + + + + diff --git a/src/views/pqs/voltageSags/Region/components/Compatibility.vue b/src/views/pqs/voltageSags/Region/components/Compatibility.vue index e63efcc6..e8e37e50 100644 --- a/src/views/pqs/voltageSags/Region/components/Compatibility.vue +++ b/src/views/pqs/voltageSags/Region/components/Compatibility.vue @@ -107,9 +107,9 @@ const handleCheckedSourceChange = (val: any) => { const info = async (list: any) => { datalist.value = [] list.forEach((item: any) => { - if (item.eventValue < 2 && item.eventValue > 0) { + // if (item.eventValue < 2 && item.eventValue > 0) { datalist.value.push(item) - } + // } }) await gongfunction() @@ -302,6 +302,7 @@ const info = async (list: any) => { radioChange(radio.value) } const radioChange = (e: any) => { + if (e == 'ITIC') { echartList.value = ITIC.value TableData.value[0].totalEvents = pointI.value.length + pointIun.value.length @@ -329,6 +330,7 @@ const gongfunction = () => { if (total == 0) { } else { for (var i = 0; i < datalist.value.length; i++) { + var point = [] var xx = datalist.value[i].persistTime var yy = datalist.value[i].eventValue * 100 @@ -413,6 +415,8 @@ const gongfunction = () => { } } + + if (xx < 0.05) { standF++ pointF.value.push({ diff --git a/src/views/pqs/voltageSags/Region/statistics/index.vue b/src/views/pqs/voltageSags/Region/statistics/index.vue index 133e087d..91652e53 100644 --- a/src/views/pqs/voltageSags/Region/statistics/index.vue +++ b/src/views/pqs/voltageSags/Region/statistics/index.vue @@ -53,6 +53,8 @@ const tableStore = new TableStore({ } }, loadCallback: () => { + + if (activeName.value == '1') { Statistics.value.info(tableStore.table.data) } else { diff --git a/src/views/pqs/voltageSags/monitoringPoint/online/eventStatistics/dianyazanjiangbiaojimidu/index.vue b/src/views/pqs/voltageSags/monitoringPoint/online/eventStatistics/dianyazanjiangbiaojimidu/index.vue index 43d10a96..58fd57a8 100644 --- a/src/views/pqs/voltageSags/monitoringPoint/online/eventStatistics/dianyazanjiangbiaojimidu/index.vue +++ b/src/views/pqs/voltageSags/monitoringPoint/online/eventStatistics/dianyazanjiangbiaojimidu/index.vue @@ -12,7 +12,7 @@
DISDIP表格(国际发配电联盟UNIPEDE)
- + @@ -30,7 +30,7 @@
EC61000-4-11(用电终端的电压暂降抗度)
- + diff --git a/src/views/pqs/voltageSags/monitoringPoint/online/eventStudy/index.vue b/src/views/pqs/voltageSags/monitoringPoint/online/eventStudy/index.vue index 65f2cc64..bc242508 100644 --- a/src/views/pqs/voltageSags/monitoringPoint/online/eventStudy/index.vue +++ b/src/views/pqs/voltageSags/monitoringPoint/online/eventStudy/index.vue @@ -3,9 +3,9 @@
- + @@ -48,10 +48,10 @@ const tableStore = new TableStore({ return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1 } }, - { title: '变电站名称', field: 'subName', minWidth: '130' }, + { title: '变电站名称', field: 'subName', minWidth: '140' }, { title: '监测点名称', field: 'lineName', minWidth: '130' }, { title: '网络参数', field: 'ip', minWidth: '130' }, - { title: '电压等级(kV)', field: 'voltageScale', width: '100' }, + { title: '电压等级(kV)', field: 'voltageScale', width: '120' }, { title: '暂降发生时刻', field: 'startTime', width: '200' }, { title: '暂降类型', field: 'advanceType', minWidth: '130' }, { title: '暂降原因', field: 'advanceReason', minWidth: '130' }, @@ -61,12 +61,14 @@ const tableStore = new TableStore({ } }, { - title: '暂降(骤升)幅值(%)', field: 'featureAmplitude', minWidth: '120', formatter: (row: any) => { + title: '暂降(骤升)幅值(%)', field: 'featureAmplitude', minWidth: '140', + + formatter: (row: any) => { return (row.cellValue * 100).toFixed(2) }, }, - { title: '持续时间(s)', field: 'duration', minWidth: '80' }, + { title: '持续时间(s)', field: 'duration', minWidth: '100' }, // { title: '严重度', field: 'severity', minWidth: '80' }, { title: '操作', diff --git a/src/views/pqs/voltageSags/overview/index.vue b/src/views/pqs/voltageSags/overview/index.vue index b9791847..515d4999 100644 --- a/src/views/pqs/voltageSags/overview/index.vue +++ b/src/views/pqs/voltageSags/overview/index.vue @@ -126,7 +126,7 @@ - 未处理事件({{ infoWindowPoint.noDealCount }}) + 暂态事件({{ infoWindowPoint.noDealCount }}) diff --git a/src/views/pqs/voltageSags/overview/popupEvent.vue b/src/views/pqs/voltageSags/overview/popupEvent.vue index 83d631b6..b31015ad 100644 --- a/src/views/pqs/voltageSags/overview/popupEvent.vue +++ b/src/views/pqs/voltageSags/overview/popupEvent.vue @@ -1,5 +1,5 @@