From 65a43438c9f1e7116e2ea5bfdbc01fc037e7c98e Mon Sep 17 00:00:00 2001 From: selia-zx <1771203023@qq.com> Date: Wed, 11 Feb 2026 13:36:54 +0800 Subject: [PATCH] =?UTF-8?q?1.=E8=AE=BE=E5=A4=87=E7=9B=91=E6=8E=A7=E7=83=AD?= =?UTF-8?q?=E9=87=8F=E8=A1=A8=E5=BC=B9=E6=A1=86=E6=B7=BB=E5=8A=A0=E7=B4=AF?= =?UTF-8?q?=E8=AE=A1=E7=83=AD=E9=87=8F=202.=E4=BF=AE=E6=94=B9=E8=AE=BE?= =?UTF-8?q?=E5=A4=87=E7=83=AD=E9=87=8F=E5=88=86=E6=9E=90=E5=92=8C=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F=E7=83=AD=E9=87=8F=E6=80=BB=E8=A7=88=E7=9A=84=E6=80=BB?= =?UTF-8?q?=E7=9B=AE=E5=BD=95=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/heatRecoverySys/deviceMonitor/monitorCenter.vue | 8 +++++++- src/views/heatRecoverySys/heatOverview/index.vue | 2 +- .../thermalAnalysis/components/equipment.vue | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/views/heatRecoverySys/deviceMonitor/monitorCenter.vue b/src/views/heatRecoverySys/deviceMonitor/monitorCenter.vue index f4e98dc..ab3eb98 100644 --- a/src/views/heatRecoverySys/deviceMonitor/monitorCenter.vue +++ b/src/views/heatRecoverySys/deviceMonitor/monitorCenter.vue @@ -329,6 +329,12 @@ {{ getHotMeterTemp(hotDialogArr, "瞬时流量", 31) }}m³/h +
+
热能量累积量:
+
+ {{ getHotMeterTemp(hotDialogArr, "累积热量", 47) }}kwh +
+
@@ -1439,7 +1445,7 @@ export default { border-radius: 10px; padding: 8px 10px; font-size: 16px; - width: 120px; + width: 180px; text-align: center; font-weight: bold; letter-spacing: 0.1em; diff --git a/src/views/heatRecoverySys/heatOverview/index.vue b/src/views/heatRecoverySys/heatOverview/index.vue index ec01740..312b177 100644 --- a/src/views/heatRecoverySys/heatOverview/index.vue +++ b/src/views/heatRecoverySys/heatOverview/index.vue @@ -427,7 +427,7 @@ export default { cold: res.data[0].cold[index].toString(), // 散热量数组 cop: res.data[2].cop[index].toString(), // 热利用率数组 })); - this.pageParm.total = res.data.totalPages; + this.pageParm.total = res.data[5].total; } else { this.tableData = []; } diff --git a/src/views/heatRecoverySys/thermalAnalysis/components/equipment.vue b/src/views/heatRecoverySys/thermalAnalysis/components/equipment.vue index 431ee88..37dda6a 100644 --- a/src/views/heatRecoverySys/thermalAnalysis/components/equipment.vue +++ b/src/views/heatRecoverySys/thermalAnalysis/components/equipment.vue @@ -516,7 +516,7 @@ export default { }; }), ]; - this.pageParm.total = res.data.totalPages; + this.pageParm.total = res.data[3].total; console.log("header", this.headers); } else { this.tableData = []; @@ -869,4 +869,7 @@ export default { width: 2.5rem !important; } } +.page { + margin-top: 0.1rem; +}