From 0a71d7e61a7dc971c0bdc66084ec0d8f788ed9d6 Mon Sep 17 00:00:00 2001 From: lixiaoyuan Date: Fri, 19 Sep 2025 18:59:55 +0800 Subject: [PATCH] =?UTF-8?q?[web]=20=E4=BF=AE=E6=94=B9=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E5=9C=BA=E7=AB=99=E8=AF=A6=E6=83=85=E8=BF=90=E8=A1=8C=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E6=95=B0=E6=8D=AE=E4=B8=8D=E6=98=BE=E7=A4=BA=E9=97=AE?= =?UTF-8?q?=E9=A2=98=EF=BC=8C=E4=BF=AE=E6=94=B9=E8=AE=BE=E5=A4=87=E5=8D=A1?= =?UTF-8?q?=E7=89=87=E5=8F=82=E6=95=B0=E7=9A=84=E5=AD=97=E4=BD=93=E5=A4=A7?= =?UTF-8?q?=E5=B0=8F=E5=92=8C=E8=A1=8C=E9=AB=98=EF=BC=8C=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E7=BB=9F=E8=AE=A1=E5=88=86=E6=9E=90=E6=9B=B2=E7=BA=BF=E5=9B=BE?= =?UTF-8?q?=E7=9A=84=E7=BC=A9=E6=94=BE=E9=BB=98=E8=AE=A4100%=EF=BC=8C?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=BB=9F=E8=AE=A1=E5=88=86=E6=9E=90=E9=A1=B5?= =?UTF-8?q?=E5=9C=BA=E7=AB=99=E5=88=87=E6=8D=A2=E4=B8=8B=E6=8B=89=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E4=B8=8D=E6=9B=B4=E6=96=B0=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/components/Home/Modal.vue | 2 +- web/src/components/monitor/device.vue | 4 +++- web/src/components/statisticalAnalysis/energyEchart.vue | 2 +- web/src/views/sub/Home.vue | 4 ++-- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/web/src/components/Home/Modal.vue b/web/src/components/Home/Modal.vue index ecfcb49..5d74a4b 100644 --- a/web/src/components/Home/Modal.vue +++ b/web/src/components/Home/Modal.vue @@ -80,7 +80,7 @@ export default { title: '运行信息', class: 'operation-status', componentId:markRaw( OperationalInfo), - infoKey: 'dataTotal' + infoKey: 'envTotal' }, { title: '场站收益情况', diff --git a/web/src/components/monitor/device.vue b/web/src/components/monitor/device.vue index 51a7aeb..21aee1b 100644 --- a/web/src/components/monitor/device.vue +++ b/web/src/components/monitor/device.vue @@ -483,9 +483,10 @@ export default { overflow-y: auto; .value { font-weight: 700; + font-size: 13px; } .item-info { - height: 30px; + height: 24px; } } .item-gun { @@ -541,6 +542,7 @@ export default { } .text { color: $text-color; + font-size: 13px; } .video { margin-top: 10px; diff --git a/web/src/components/statisticalAnalysis/energyEchart.vue b/web/src/components/statisticalAnalysis/energyEchart.vue index 6d90c69..8a2e43a 100644 --- a/web/src/components/statisticalAnalysis/energyEchart.vue +++ b/web/src/components/statisticalAnalysis/energyEchart.vue @@ -223,7 +223,7 @@ export default { show: true, xAxisIndex: 0, start: 0, - end: 20, + end: 100, height: 20, bottom: 10, }, diff --git a/web/src/views/sub/Home.vue b/web/src/views/sub/Home.vue index be6a01d..f343b7d 100644 --- a/web/src/views/sub/Home.vue +++ b/web/src/views/sub/Home.vue @@ -176,7 +176,7 @@ export default { // category:类别,1:储能设备,2:充电设备,3:光伏设备,为0或不传查询所有类别总计 const query = { date: getDateDaysAgo(0), - stationId: this.stationId, + station_id: this.stationId, category: 0 } const res = await getReq('/queryStatTotal', query) @@ -216,7 +216,7 @@ export default { // start_date:开始日期,格式:yyyy-mm-dd // end_date:结束日期,格式:yyyy-mm-dd const query = { - stationId: this.stationId, + station_id: this.stationId, category, start_date: getDateDaysAgo(7 - 1), end_date: getDateDaysAgo(0)