js根据条件显示参数控件--https://help.fanruan.com/finereport/doc-view-1195.html
第一个控件编辑后事件

var para_A = this.options.form.getWidgetByName("A").getValue();//获取控件A的值
var para_B = this.options.form.getWidgetByName("B");//获取控件B
if(para_A=='实绩'){
para_B.setVisible(true);
}else{
para_B.setVisible(false);
}