toolbarEvent.js
918 Bytes
!function(){
$('#exitBtn').on('click', function(){
layer.confirm('确定要退出系统?', {
btn : [ '退出', '取消' ],
icon : 3,
skin : 'layui-layer-cfm-delete'
}, function(){
//清除标记
storage.removeItem('real_control_flag');
//解绑事件
$(document).unbind('ajaxSend', interceptPOST);
layer.closeAll();
window.location.href = '/pages/control/lineallot/allot.html';
});
});
//调度指令
$('#msgAndDirect').on('click', function(){
layer.msg('功能测试中...稍后开放!');
/*$.get('/pages/control/line/child_pages/historyMessage.html', function(content){
layer.open({
type: 1,
area: '930px',
content: content,
title : false,
success: function(){
}
});
});*/
});
//设备上报
$('#deviceReport').on('click', function(){
layer.msg('功能测试中...稍后开放!');
});
}();