怎么根据参数不同设置按钮的隐藏
加载结束时间,写js,根据参数显示或隐藏按钮啊
var b = this.options.form.getWidgetByName("name");
setTimeout(function() {
if (a == '1') {
b.setVisible(false);
} else {
b.setVisible(true);
}
}, 100);