https://help.finereport.com/doc-view-1746.html#7 根据这个文档制作出了定时刷新的跑马灯 但是这个刷新时间很快,我想的是页面加载开始跑马灯动起来,然后10分钟刷新一次,因为数据是10分刷新一次的,这个要怎么改???var form = this.options.form;setInterval(function() {form.getWidgetByName('report11').gotoPage(1, "{}", true);//报表块刷新$(".loading-ec-indicator").eq(0).remove();//移除刷新加载图片$(".text-indicator").remove();//移除正在加载文字setTimeout(function() {speed = 20;var tab = document.getElementById("demo");var tab1 = document.getElementById("demo1");var tab2 = document.getElementById("demo2");tab2.innerHTML = tab1.innerHTML;tab.scrollTop = tab1.offsetHeight;function Marquee() {if (tab.scrollTop >= tab1.offsetHeight) {tab.scrollTop -= tab2.offsetHeight;} else {tab.scrollTop += 1;}}var MyMar = setInterval(Marquee, speed);}, 1000);},5000);