From c76a15ef052fb7ff0a53b85cf9527f4f16a17bcb Mon Sep 17 00:00:00 2001 From: zhanghan11 Date: Mon, 8 Jul 2024 16:57:37 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8E=E5=8F=B0=E5=8F=96=E6=95=B0=E9=80=BB?= =?UTF-8?q?=E8=BE=91=E4=BF=AE=E6=94=B9+=E5=89=8D=E5=8F=B0=E5=B1=95?= =?UTF-8?q?=E7=A4=BA=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tzipc-ui/src/views/ipc/bigscreen/index.vue | 36 ++++++++++---------- tzipc-ui/src/views/ipc/rulesConfig/index.vue | 2 +- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/tzipc-ui/src/views/ipc/bigscreen/index.vue b/tzipc-ui/src/views/ipc/bigscreen/index.vue index 1d20866..91e9848 100644 --- a/tzipc-ui/src/views/ipc/bigscreen/index.vue +++ b/tzipc-ui/src/views/ipc/bigscreen/index.vue @@ -185,13 +185,13 @@ >
- {{ parseFloat(l1 ).toFixed(2) }} + {{ parseFloat(l1 || 0).toFixed(2) }}
- {{ parseFloat(l2).toFixed(2) }} + {{ parseFloat(l2 || 0).toFixed(2) }}
- {{ parseFloat(r1).toFixed(2) }} + {{ parseFloat(r1 || 0).toFixed(2) }}
- {{ parseFloat(r2).toFixed(2) }} + {{ parseFloat(r2 || 0).toFixed(2) }}
修改