决策报表报表块鼠标悬浮显示隐藏报表块
var th = this;
setTimeout(function() {
$("div[widgetName^=REPORT0]").hover(function() {
th.options.form.getWidgetByName('report1').setVisible(true);
},
function() {
th.options.form.getWidgetByName('report1').setVisible(false);
}
)
}, 100)