|
楼主 |
发表于 2018-6-20 10:34:04
|
显示全部楼层
自己折腾出来了,勉强能用,供参考;
1、org.jeecgframework.tag.core.easyui 类的 279行 的
//submitLoading(sb);
这个代码需注释掉,这个是提交弹出的遮罩层
2、然后再自己的脚本方法中判断,如果成功了需要弹出遮罩层的代码。 比如:
function doConfirm(formobj) {
//提交前的校验
var check = true;
if(check){
alert("验证通过");
subDlgIndex = $.dialog({
content: '正在加载中',
zIndex: 19910320,
lock: true,
width: 100,
height: 50,
opacity: 0.3,
title: '提示',
cache: false
});
var infoTable = subDlgIndex.DOM.t.parent().parent().parent();
infoTable.parent().append('<div id="infoTable-loading" style="text-align:center;"><img src="plug-in/layer/skin/default/loading-0.gif"/></div>');
infoTable.css('display', 'none');
return true;
}else{
alert("验证不通过");
return false;
}
}
|
|