if(!window.navigator) {
FR.Msg.alert("提示","当前设备:移动端APP")
}
else{
if(/Mobile|Android|webOS|iPhone|iPad|Phone/i.test(navigator.userAgent)){
FR.Msg.alert("提示","当前设备:移动端H5");
}
else{
FR.Msg.alert("提示","当前设备:PC端");
}
}
在报表的body初始化事件中判断终端类型,然后移动端就隐藏背景那个报表块
this.options.form.getWidgetByName('report0').setVisible(true);
JS判断PC和移动设备类型-https://help.fanruan.com/finereport/doc-view-1875.html