能否实现指定的时间只刷新指定report?
可以啊,下载报表块刷新插件
决策报表内报表块刷新插件-https://help.fanruan.com/finereport10.0/doc-view-1752.html
或者
JS实现决策报表内报表块刷新/翻页-https://help.fanruan.com/finereport10.0/doc-view-1304.html
下载个报表刷新插件, 没有的话 就 在模块引入JS 初始化 var form = this.options.form;setInterval(function() { form.getWidgetByName('report1').gotoPage(1,"{}",true);}, 1000); //刷新
FR.Chart.WebUtils.getChart("A1","report0").dataRefresh();//刷新report0报表块的A1单元格的图表
FR.Chart.WebUtils.getChart("chart0").dataRefresh();//刷新决策报表中图表块中的chart0图表
FR.Chart.WebUtils.changeParameter(//刷新chart0图表
'chart0',{
"地区":area
});
这些方法都不需要下载插件就能实现