Browse Source

fix:去掉多余的菜单

master
燕鹏 3 years ago
parent
commit
e4c8a6757f
  1. 6
      ureport2-js/src/designer.js

6
ureport2-js/src/designer.js

@ -122,9 +122,9 @@ export default class UReportDesigner{
const toolbar=$(`<div class="btn-group ud-toolbar top-toolbar"></div>`);
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));

Loading…
Cancel
Save