1. 修改 即時告警 bug fix

This commit is contained in:
Kai 2021-09-14 17:33:57 +08:00
parent 108ad45b35
commit 450fd69b88
3 changed files with 5 additions and 4 deletions

View File

@ -579,7 +579,7 @@
powerids.push(classid[1]);
}
else {
powerids.remove(classid[1]);
powerids.splice($.inArray(classid[1], powerids), 1);
}
ExceptionTable.ajax.reload();
})

View File

@ -580,10 +580,11 @@
var classid = clickid.split("_");
var job = document.getElementById(clickid);
if (job.checked == true) {
powerids.push(classid[1]); }
powerids.push(classid[1]);
}
else
{
powerids.remove(classid[1]);
powerids.splice($.inArray(classid[1], powerids), 1);
}
OperationPlanTable.ajax.reload();
})

View File

@ -924,7 +924,7 @@
powerids.push(classid[1]);
}
else {
powerids.remove(classid[1]);
powerids.splice($.inArray(classid[1], powerids), 1);
}
if (status == 2) {
operationRecordTable.column(10).visible(true);