From 22011188a12ea092eb6a43307005ab2380db2e80 Mon Sep 17 00:00:00 2001 From: guanj Date: Fri, 17 Jul 2026 16:13:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=BE=BD=E5=AE=81=E5=85=A8?= =?UTF-8?q?=E6=99=AF=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/device-boot/panorama.ts | 4 + src/components/echarts/MyEchart.vue | 2 +- .../runManage/terminalLedger/index.vue | 2 +- .../pqs/panorama/components/cityMapL-LN.vue | 667 +++++++++ .../pqs/panorama/components/cityMapL1.vue | 338 ----- .../pqs/panorama/components/cityMapR.vue | 11 +- src/views/pqs/panorama/components/mapL-LN.vue | 786 +++++++++++ src/views/pqs/panorama/components/mapL1.vue | 516 ------- src/views/pqs/panorama/index.vue | 579 ++++---- .../panorama/components/cityMapR.vue | 1252 ++++++++--------- 10 files changed, 2391 insertions(+), 1766 deletions(-) create mode 100644 src/views/pqs/panorama/components/cityMapL-LN.vue delete mode 100644 src/views/pqs/panorama/components/cityMapL1.vue create mode 100644 src/views/pqs/panorama/components/mapL-LN.vue delete mode 100644 src/views/pqs/panorama/components/mapL1.vue diff --git a/src/api/device-boot/panorama.ts b/src/api/device-boot/panorama.ts index 3faeb7ba..c9b5a25a 100644 --- a/src/api/device-boot/panorama.ts +++ b/src/api/device-boot/panorama.ts @@ -186,3 +186,7 @@ export function limitTableDetail(data: any) { export function downPollutionSensitiveUser(data: any) { return request({ url: '/harmonic-boot/PollutionSubstation/downPollutionSensitiveUser', method: 'post', data }) } +//干扰源类型统计 +export function loadTypeVOList(data: any) { + return request({ url: '/device-boot/gridDiagram/loadTypeVOList', method: 'post', data }) +} diff --git a/src/components/echarts/MyEchart.vue b/src/components/echarts/MyEchart.vue index 898794c1..3701a52b 100644 --- a/src/components/echarts/MyEchart.vue +++ b/src/components/echarts/MyEchart.vue @@ -169,7 +169,7 @@ const handlerBar = (options: any) => { if (Array.isArray(options.series)) { options.series.forEach((item: any) => { if (item.type === 'bar') { - item.barMinHeight = 10 + item.barMinHeight = 0 item.barMaxWidth = 20 item.itemStyle = Object.assign( { diff --git a/src/views/pqs/harmonicMonitoring/runManage/terminalLedger/index.vue b/src/views/pqs/harmonicMonitoring/runManage/terminalLedger/index.vue index 11cee20a..cbb39d8d 100644 --- a/src/views/pqs/harmonicMonitoring/runManage/terminalLedger/index.vue +++ b/src/views/pqs/harmonicMonitoring/runManage/terminalLedger/index.vue @@ -173,7 +173,7 @@ const tableStore = new TableStore({ }, { field: 'objName', - title: '用户对象', + title: '监测点对象', minWidth: 110 }, { field: 'manufacturer', title: '厂家', minWidth: 100 }, diff --git a/src/views/pqs/panorama/components/cityMapL-LN.vue b/src/views/pqs/panorama/components/cityMapL-LN.vue new file mode 100644 index 00000000..1af076b5 --- /dev/null +++ b/src/views/pqs/panorama/components/cityMapL-LN.vue @@ -0,0 +1,667 @@ + + + + + diff --git a/src/views/pqs/panorama/components/cityMapL1.vue b/src/views/pqs/panorama/components/cityMapL1.vue deleted file mode 100644 index f425355a..00000000 --- a/src/views/pqs/panorama/components/cityMapL1.vue +++ /dev/null @@ -1,338 +0,0 @@ - - - - - diff --git a/src/views/pqs/panorama/components/cityMapR.vue b/src/views/pqs/panorama/components/cityMapR.vue index 6fe1e1ba..528ad5e5 100644 --- a/src/views/pqs/panorama/components/cityMapR.vue +++ b/src/views/pqs/panorama/components/cityMapR.vue @@ -339,11 +339,12 @@ const info = (row: any) => { color: [config.layout.elementUiPrimary[0], '#FFBF00'], yAxis: { name: '', - type: 'value', - max: 100 + type: 'value' + // max: 100 }, legend: { - data: ['超标监测点数', '超标天数'] + data: ['超标监测点数', '超标天数'], + top: '5' }, xAxis: { type: 'category', @@ -354,7 +355,8 @@ const info = (row: any) => { }), axisLabel: { color: '#000', - fontSize: 10 + fontSize: 10, + rotate: 30 } }, grid: { @@ -364,6 +366,7 @@ const info = (row: any) => { }, options: { + dataZoom: null, toolbox: null, series: [ { diff --git a/src/views/pqs/panorama/components/mapL-LN.vue b/src/views/pqs/panorama/components/mapL-LN.vue new file mode 100644 index 00000000..74ba7539 --- /dev/null +++ b/src/views/pqs/panorama/components/mapL-LN.vue @@ -0,0 +1,786 @@ + + + + + diff --git a/src/views/pqs/panorama/components/mapL1.vue b/src/views/pqs/panorama/components/mapL1.vue deleted file mode 100644 index da19b612..00000000 --- a/src/views/pqs/panorama/components/mapL1.vue +++ /dev/null @@ -1,516 +0,0 @@ - - - - - diff --git a/src/views/pqs/panorama/index.vue b/src/views/pqs/panorama/index.vue index 3462635b..ad59e184 100644 --- a/src/views/pqs/panorama/index.vue +++ b/src/views/pqs/panorama/index.vue @@ -1,280 +1,299 @@ - - - - - - + + + + + diff --git a/src/views/pqs/qualityInspeection/panorama/components/cityMapR.vue b/src/views/pqs/qualityInspeection/panorama/components/cityMapR.vue index 4aa7cdd4..59d79522 100644 --- a/src/views/pqs/qualityInspeection/panorama/components/cityMapR.vue +++ b/src/views/pqs/qualityInspeection/panorama/components/cityMapR.vue @@ -1,626 +1,626 @@ - - - - - + + + + +