From 41241f2fde0be5099924a2ff0e7f392b7018b68c Mon Sep 17 00:00:00 2001 From: fancy Date: Tue, 28 Apr 2020 16:22:55 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E5=8A=A8=E7=AB=AF=E8=A1=A8=E5=8D=95?= =?UTF-8?q?=E8=BE=93=E5=85=A5=E6=B3=95=E9=9A=90=E8=97=8F=E5=AF=BC=E8=87=B4?= =?UTF-8?q?=E4=B8=8B=E5=8D=8A=E9=83=A8=E5=88=86=E7=A9=BA=E7=99=BD=E7=9A=84?= =?UTF-8?q?bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- o2web/source/x_component_process_Xform/Form.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/o2web/source/x_component_process_Xform/Form.js b/o2web/source/x_component_process_Xform/Form.js index 7d40d79d10..e9b3027f8d 100644 --- a/o2web/source/x_component_process_Xform/Form.js +++ b/o2web/source/x_component_process_Xform/Form.js @@ -1682,7 +1682,10 @@ MWF.xApplication.process.Xform.Form = MWF.APPForm = new Class({ this.startDraftProcess(); } else { if (this.json.mode == "Mobile") { - this.processWork_mobile(); + setTimeout(function () { + this.processWork_mobile(); + }.bind(this), 100); + } else { this.fireEvent("beforeProcessWork"); if (this.app && this.app.fireEvent) this.app.fireEvent("beforeProcessWork"); -- GitLab