就这个用js写
Msg-https://help.finereport.com/doc-view-603.html
JS实现弹窗后数据回填-https://help.finereport.com/doc-view-3127.html
你估计是要下面这个功能。
setTimeout(function(){
FR.Msg.alert("公告","下午数据更新");
},2000);
$("#popup_container").remove();
},5000)
按钮点击事件里填写:
var $iframe=$("<iframe style='width:100%;height:100%'>");
$iframe.attr("src","${servletURL}?reportlet=目录/报表名");
var sty={title:'标题',width:800,height:6000};
FR.showDialog(sty.title,sty.width,sty.height,$iframe,0);