Commit b4a60b29 authored by 楼国栋's avatar 楼国栋
Browse files

Merge branch 'fix/work_mobile_loading' into 'wrdp'

移动端工作表单提交loading显示

See merge request o2oa/o2oa!6447
Showing with 6 additions and 2 deletions
+6 -2
......@@ -1994,8 +1994,12 @@ MWF.xApplication.process.Xform.Form = MWF.APPForm = new Class(
var _self = this;
MWF.require("MWF.widget.Mask", function () {
this.mask = new MWF.widget.Mask({ "style": "desktop", "zIndex": 50000 });
this.mask.loadNode(this.app.content);
debugger; // 适配移动端
if (layout.mobile) {
this.mask.load();
} else {
this.mask.loadNode(this.app.content);
}
if (callbackBeforeSave) callbackBeforeSave();
this.fireEvent("beforeSave");
if (this.app && this.app.fireEvent) this.app.fireEvent("beforeSave");
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment