https://help.fanruan.com/finereport/doc-view-1284.html?source=4
你要的是不是这个
参数联动
如果只有一个广东是这样,那在省下拉框的编辑后事件中添加js
var city=this.options.form.getWidgetByName("市参数");
if(this.getValue()==="广东")
{
city.setValue("深圳")
}
在市参数下拉控件添加编辑后事件:
var province=this.options.form.getWidgetByName("省参数");
if(province.getValue()==="广东" &&this.getValue()==="")
{
this.reset();
this.setValue("深圳")
alert("当前选择不能为空,只能选择深圳")
}