2019-09-06 23:53:10 +08:00

98 lines
2.8 KiB
JavaScript
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

function hyhUrl(url) {
return 'http://www.heyuanhui.cn/' + url;
}
function llUrl(url) {
return 'http://www.heyuanhui.cn/' + url;
}
function kxUrl(url) {
return 'http://www.heyuanhui.cn' + url;
}
function hyhImgUrl(url) {
return 'http://img.heyuanhui.cn/' + url;
}
function cssUrl(url) {
return '../css/' + url;
}
function toJson(str, notLimit) {
var json = {};
if(str) {
try {
if(typeof(str) == "object") {
json = str;
} else {
json = eval("(" + str + ")");
}
if(!notLimit) {
if(json.status && json.status == '-999') {
console.log(str.msg)
inLogin();
}
}
} catch(e) {
alert("系统发生错误:" + e.getMessage);
json = {};
}
return json;
} else {
return;
}
}
function backTop() {
mui('.mui-scroll-wrapper').scroll().scrollTo(0, 0, 0);
}
function inLogin() {
mui.openWindow({
url: 'login.html',
id: 'login.html',
styles: {
top: '0px', //新页面顶部位置
bottom: '0px', //新页面底部位置
width: '100%', //新页面宽度默认为100%
height: '100%' //新页面高度默认为100%
},
extras: {
// data_href: data_href
// ..... //自定义扩展参数,可以用来处理页面间传值
},
createNew: false, //是否重复创建同样id的webview默认为false:不重复创建,直接显示
show: {
// autoShow: true, //页面loaded事件发生后自动显示默认为true
// aniShow: animationType, //页面显示动画默认为”slide-in-right“
// duration: animationTime, //页面动画持续时间Android平台默认100毫秒iOS平台默认200毫秒
// event: 'titleUpdate', //页面显示时机默认为titleUpdate事件时显示
// extras: {} //窗口动画是否使用图片加速
},
waiting: {
autoShow: true, //自动显示等待框默认为true
title: '正在加载...', //等待对话框上显示的提示内容
options: {
// width: waiting - dialog - widht, //等待框背景区域宽度,默认根据内容自动计算合适宽度
// height: waiting - dialog - height, //等待框背景区域高度,默认根据内容自动计算合适高度
// ......
}
}
})
}
var scroll = mui('.mui-scroll-wrapper').scroll();
var ua = navigator.userAgent.toLowerCase();
if(/iphone|ipad|ipod/.test(ua)) { //苹果手机
if(document.getElementsByClassName('zhe')[0]) {
document.getElementsByClassName('zhe')[0].style.display = 'none';
}
// document.getElementsByClassName('zhe')[0].style.display='none';
} else if(/android/.test(ua)) {
// document.getElementsByClassName('zhe')[0].style.display='block';
if(document.getElementsByClassName('zhe')[0]) {
document.getElementsByClassName('zhe')[0].style.display = 'none';
}
}