From de33285eff2b482bf40841422e68a3ae922efe04 Mon Sep 17 00:00:00 2001 From: zch Date: Mon, 25 Nov 2024 17:10:47 +0800 Subject: [PATCH] =?UTF-8?q?change(ems):=20=E4=BF=AE=E6=94=B9=E7=9E=AC?= =?UTF-8?q?=E6=97=B6=E6=B5=81=E9=87=8F=E5=9B=BE=E8=A1=A8=E6=A0=87=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在瞬时流量图表标题中增加"曲线"二字,标题显示平均值 --- src/views/ems/report/currentSteamCurve/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/ems/report/currentSteamCurve/index.vue b/src/views/ems/report/currentSteamCurve/index.vue index e893edb..99aeb20 100644 --- a/src/views/ems/report/currentSteamCurve/index.vue +++ b/src/views/ems/report/currentSteamCurve/index.vue @@ -265,7 +265,7 @@ export default { let option1 = { title: { - text: this.selectMonitorName + ' 瞬时流量' + ' (平均值:'+ + text: this.selectMonitorName + ' 瞬时流量曲线' + ' (平均值:'+ ((data.map(e=>parseFloat(e.fluxFlow)).reduce((a,b)=>a+b,0))/data.length).toFixed(2)+")", x: 'center' },