修改内部评审提出问题

This commit is contained in:
zhanghan11 2024-04-15 11:32:28 +08:00
parent 833f458057
commit 51473b260d

View File

@ -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;