1. 修改 即時告警 bug fix
This commit is contained in:
parent
108ad45b35
commit
450fd69b88
@ -579,7 +579,7 @@
|
||||
powerids.push(classid[1]);
|
||||
}
|
||||
else {
|
||||
powerids.remove(classid[1]);
|
||||
powerids.splice($.inArray(classid[1], powerids), 1);
|
||||
}
|
||||
ExceptionTable.ajax.reload();
|
||||
})
|
||||
|
||||
@ -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();
|
||||
})
|
||||
|
||||
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user