导出按钮JS:
var a=_g().parameterEl.getWidgetByName("button0");
setTimeout(function() {
a.setEnable(false);
//将当前控件设置为不可用
a.find('.fr-btn-up').css('background-color', 'gray');
}, 500)
重置按钮JS:
var a=_g().parameterEl.getWidgetByName("button0");
setTimeout(function() {
a.setEnable(true);
//将当前控件设置为可用
a.find('.fr-btn-up').css('background-color', 'blue');
}, 500)