用js可以判断设备
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端");
}
}
地址
https://help.fanruan.com/finereport/doc-view-1875.html