怎么根据切换sheet页来隐藏和显示控件
参考JS实现根据当前sheet隐藏参数面板-https://help.fanruan.com/finereport/doc-view-4105.html
这个js直接隐藏参数面板,你改成隐藏控件的js就可以
this.options.form.getWidgetByName("tx").setVisible(false);//隐藏控件,控件名为tx
this.options.form.getWidgetByName("tx").setVisible(true);//显示控件,控件名为tx