提交 21d1b57a 编写于 作者: X xueli.xue

1、任务新增时,任务列表偏移问题修复;

2、任务删除时,任务列表偏移问题修复;
原因:confirm和alert弹框冲突导致;
上级 c4732c95
......@@ -286,11 +286,13 @@ $(function() {
submitHandler : function(form) {
$.post(base_url + "/jobinfo/add", $("#addModal .form").serialize(), function(data, status) {
if (data.code == "200") {
ComAlert.show(1, "新增任务成功", function(){
//window.location.reload();
$('#addModal').modal('hide');
jobTable.fnDraw();
});
$('#addModal').modal('hide');
setTimeout(function () {
ComAlert.show(1, "新增任务成功", function(){
jobTable.fnDraw();
//window.location.reload();
});
}, 315);
} else {
if (data.msg) {
ComAlert.show(2, data.msg);
......
......@@ -83,8 +83,10 @@ var ComConfirm = {
$('#ComConfirm .ok').click(function(){
$('#ComConfirm').modal('hide');
if(typeof callback == 'function') {
callback();
return;
setTimeout(function(){
callback();
return;
}, 315);
}
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册