From bf699a1e1255d18af93bbfc4538afeea7024639b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=82=BB=E6=8B=96?= Date: Thu, 24 Jun 2021 17:58:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E9=87=91=E6=A0=BC=E6=8E=A7?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- o2web/source/x_component_process_Xform/IWebOffice.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/o2web/source/x_component_process_Xform/IWebOffice.js b/o2web/source/x_component_process_Xform/IWebOffice.js index c46c8340a4..6575c6cb96 100644 --- a/o2web/source/x_component_process_Xform/IWebOffice.js +++ b/o2web/source/x_component_process_Xform/IWebOffice.js @@ -225,7 +225,7 @@ MWF.xApplication.process.Xform.IWebOffice = MWF.APPIWebOffice = new Class({ this.officeNode.appendHTML(objectHtml); this.officeForm = this.officeNode.getFirst(); } - setTimeout(function() {this.loadIwebOfficeEditor()}.bind(this), 5000); + setTimeout(function() {this.loadIwebOfficeEditor()}.bind(this), 3000); }, loadIwebOfficeEditor : function (){ @@ -259,7 +259,7 @@ MWF.xApplication.process.Xform.IWebOffice = MWF.APPIWebOffice = new Class({ } this.officeOCX.ShowMenu = this.json.iWebOfficeEditProperties.Menubar; //控制整体菜单显示 this.officeOCX.ShowToolBar = this.json.iWebOfficeEditProperties.ToolBars; //ShowToolBar:是否显示工具栏:1显示,0不显示 - this.officeOCX.ShowWindow = true; //控制显示打开或保存文档的进度窗口,默认不显示 + this.officeOCX.ShowWindow = false; //控制显示打开或保存文档的进度窗口,默认不显示 this.officeOCX.MaxFileSize = 32 * 1024; //最大的文档大小控制,默认是8M,现在设置成4M。 this.officeOCX.Print="1"; this.officeOCX.WebOpen(); -- GitLab