工具栏接口-https://help.fanruan.com/finereport10.0/doc-view-4010.html
工具栏JS实例-https://help.fanruan.com/finereport10.0/doc-view-2135.html
你可以通过对每个工具栏的图标隐藏掉!而不用去隐藏这个工具栏大类
比如隐藏提交与打印按钮
setTimeout(function() {
$("div[widgetname='Submit']").css("display","none");
$("div[widgetname='NewPrint']").css("display","none");
},100)