find("经营类",e3)>0
控件可用,条件属性

E3是填报编辑的话用js事件 编辑结束后事件
var location = this.options.location; //获取当前控件的位置得到一个单元格的地址
var cr = FR.cellStr2ColumnRow(location);//把单元格地址传入后就得到一个控件对象了
var col = cr.col; //获取控件对象的列号
var ro = cr.row; //获取控件对象的行号
var c= contentPane.getWidgetByCell(FR.columnRow2CellStr({col: col+1, row: ro}));//获取它后面一列控件对象
var b =this.getValue();
if (b.includes("经营类")){
c.setVisible(true);
}
else {
c.setVisible(false);
}