From e4c8a6757fd0861f0c5f9a9d76ca85f763da79a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=87=95=E9=B9=8F?= Date: Mon, 12 Jul 2021 15:13:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=8E=BB=E6=8E=89=E5=A4=9A=E4=BD=99?= =?UTF-8?q?=E7=9A=84=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ureport2-js/src/designer.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ureport2-js/src/designer.js b/ureport2-js/src/designer.js index 47b86ef..6a1cf1d 100644 --- a/ureport2-js/src/designer.js +++ b/ureport2-js/src/designer.js @@ -122,9 +122,9 @@ export default class UReportDesigner{ const toolbar=$(`
`); this.container.prepend(toolbar); this.tools=[]; - this.tools.push(new PreviewTool(context)); + // this.tools.push(new PreviewTool(context)); this.tools.push(new SaveTool(context)); - this.tools.push(new OpenTool(context)); + // this.tools.push(new OpenTool(context)); this.tools.push(new ImportTool(context)); this.tools.push(new RedoTool(context)); this.tools.push(new UndoTool(context)); @@ -140,7 +140,7 @@ export default class UReportDesigner{ this.tools.push(new BgcolorTool(context)); this.tools.push(new ForecolorTool(context)); this.tools.push(new CrosstabTool(context)); - this.tools.push(new ImageTool(context)); + // this.tools.push(new ImageTool(context)); this.tools.push(new ZxingTool(context)); this.tools.push(new ChartTool(context)); this.tools.push(new SettingsTool(context));