function router(path, data) { if (!path) return if (!mui.os.plus) { location.href = path; return; } openWindow(path) } function openWindow(path) { var wv = plus.webview.currentWebview(); localStorage.setItem('wvId',wv.id) mui.openWindow({ url: path, id: path, styles: { top: 0, //新页面顶部位置 bottom: 0, //新页面底部位置 // width:newpage-width,//新页面宽度,默认为100% // height:newpage-height,//新页面高度,默认为100% // ...... }, extras: { // .....//自定义扩展参数,可以用来处理页面间传值 }, createNew: false, //是否重复创建同样id的webview,默认为false:不重复创建,直接显示 show: { autoShow: true, //页面loaded事件发生后自动显示,默认为true // aniShow:animationType,//页面显示动画,默认为”slide-in-right“; // duration:animationTime//页面动画持续时间,Android平台默认100毫秒,iOS平台默认200毫秒; }, waiting: { autoShow: true, //自动显示等待框,默认为true title: '正在加载...', //等待对话框上显示的提示内容 options: { // width:waiting-dialog-widht,//等待框背景区域宽度,默认根据内容自动计算合适宽度 // height:waiting-dialog-height,//等待框背景区域高度,默认根据内容自动计算合适高度 // ...... } } }) } var entry = 'flyteam'//farmers window.resMsg = function (e) { return e.split(':')[1] } // window.HTTPS = 'https://devel.skylinuav.com/' // window.HTTPS = 'http://www.onemoretime.ml:8099/' window.HTTPS = 'http://118.24.101.215/' // window.HTTPS = 'http://192.168.1.106/' function filterImg(e) { switch (e) { case '玉米': return 'yumi' break; case '小麦': return 'xiaomai' break; case '甘蔗': return 'ganzhe' break; case '水稻': return 'shuidao' break; case '柑橘': return 'ganju' break; case '葡萄': return 'putao' break; case '大蒜': return 'dasuan' break; case '棉花': return 'mianhua' break; default: return 'default' break; } } function update(){ if (!mui.os.plus) return var wvId =localStorage.getItem('wvId') var indexId = localStorage.getItem('indexId') mui.fire(plus.webview.getWebviewById(wvId),'update',{}) mui.fire(plus.webview.getWebviewById(indexId),'update',{}) } function addUpdate(callback){ mui.plusReady(function() { window.addEventListener('update',function(event){ callback() }); }) } function restart(){ if (!mui.os.plus) { location.href = './index.html'; return; } plus.runtime.restart() }