...
|
...
|
@@ -976,6 +976,22 @@ layui.define(['common', 'swiper', 'admin', 'commonDetail', 'mxClient', 'msgTips' |
|
|
$("#indexActiveAlarmList").html('<li style="width:390px;"><p>无告警</p></li>');
|
|
|
});
|
|
|
}
|
|
|
|
|
|
$('#indexActiveAlarmList').on('click','li[data-id]',function(){
|
|
|
let win = window.parent;
|
|
|
if (win) {
|
|
|
window.parent.postMessage({
|
|
|
type: 'openResAlarmDetail',
|
|
|
message: {
|
|
|
params:{
|
|
|
'resId':$(this).data('id'),
|
|
|
'batchNo':$(this).data('batchNo'),
|
|
|
},
|
|
|
title:'',
|
|
|
}
|
|
|
}, '*')
|
|
|
}
|
|
|
})
|
|
|
/**
|
|
|
* 跳转到告警管理
|
|
|
* bizId 业务id
|
...
|
...
|
|