From 51473b260d3c60783ef03dddb6784d41042aa6ba Mon Sep 17 00:00:00 2001 From: zhanghan11 Date: Mon, 15 Apr 2024 11:32:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=86=85=E9=83=A8=E8=AF=84?= =?UTF-8?q?=E5=AE=A1=E6=8F=90=E5=87=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tzipc-ui/src/views/ipc/bigscreen/index.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tzipc-ui/src/views/ipc/bigscreen/index.vue b/tzipc-ui/src/views/ipc/bigscreen/index.vue index 569a65d..0c3329b 100644 --- a/tzipc-ui/src/views/ipc/bigscreen/index.vue +++ b/tzipc-ui/src/views/ipc/bigscreen/index.vue @@ -710,15 +710,24 @@ export default { const { rtd, rto, rbd, rbo, ftd, fto, fbd, fbo } = alarmCount; if (rtd || rto) { this.isAlarm.rt = true; + } else { + this.isAlarm.rt = false; } if (rbd || rbo) { this.isAlarm.rb = true; + } else { + this.isAlarm.rb = false; } + 0; if (ftd || fto) { this.isAlarm.ft = true; + } else { + this.isAlarm.ft = false; } if (fbd || fbo) { this.isAlarm.fb = true; + } else { + this.isAlarm.fb = false; } } this.rtAlarmStr = pzDriveAlarmStr;