You've already forked qlg.frontend
Init Repo
This commit is contained in:
274
js/start.js
Normal file
274
js/start.js
Normal file
@ -0,0 +1,274 @@
|
||||
function init(data) {
|
||||
////console.log(data.apk_version)
|
||||
// //console.log(localStorage.getItem('jsUrl'))
|
||||
apk_version = data.apk_version;
|
||||
apkUrl = data.apk_down_url;
|
||||
iosUrl = data.ios_down_url;
|
||||
var must_update = data.must_update;
|
||||
var ios_must_update = data.ios_must_update;
|
||||
mui.plusReady(function() {
|
||||
plus.navigator.setStatusBarStyle('dark');
|
||||
plus.runtime.getProperty(plus.runtime.appid, function(inf) {
|
||||
ver = inf.version;
|
||||
var client;
|
||||
var ua = navigator.userAgent.toLowerCase();
|
||||
if(/iphone|ipad|ipod/.test(ua)) { //苹果手机
|
||||
$.ajax({
|
||||
type: "get",
|
||||
dataType: 'json',
|
||||
url: data.update_url, //获取当前上架APPStore版本信息
|
||||
data: {
|
||||
id: data.ios_appid //APP唯一标识ID
|
||||
},
|
||||
contentType: 'application/x-www-form-urlencoded;charset=UTF-8',
|
||||
success: function(data) {
|
||||
|
||||
if(data.results[0].version > ver) {
|
||||
if(ios_must_update == 0) {
|
||||
if(confirm("发现新版本:V" + data.results[0].version + "是否更新")) {
|
||||
document.location.href = iosUrl; //上新APPStore下载地址
|
||||
}
|
||||
} else {
|
||||
mui.alert("发现新版本:V" + data.results[0].version + "是否更新")
|
||||
document.location.href = iosUrl; //上新APPStore下载地址
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
}
|
||||
}
|
||||
});
|
||||
} else if(/android/.test(ua)) {
|
||||
|
||||
if(apk_version > ver) {
|
||||
if(must_update == 0) {
|
||||
if(confirm("发现新版本:V" + apk_version + "是否更新")) {
|
||||
var dtask = plus.downloader.createDownload(apkUrl, {}, function(d, status) {
|
||||
if(status == 200) {
|
||||
plus.nativeUI.toast("正在准备环境,请稍后!");
|
||||
sleep(1000);
|
||||
var path = d.filename; //下载apk
|
||||
plus.runtime.install(path); // 自动安装apk文件
|
||||
} else {
|
||||
mui.alert('版本更新失败:' + status);
|
||||
}
|
||||
});
|
||||
dtask.start();
|
||||
}
|
||||
} else {
|
||||
if(confirm("发现新版本:V" + apk_version + "是否更新")) {
|
||||
var dtask = plus.downloader.createDownload(apkUrl, {}, function(d, status) {
|
||||
if(status == 200) {
|
||||
plus.nativeUI.toast("正在准备环境,请稍后!");
|
||||
sleep(1000);
|
||||
var path = d.filename; //下载apk
|
||||
plus.runtime.install(path); // 自动安装apk文件
|
||||
} else {
|
||||
mui.alert('版本更新失败:' + status);
|
||||
}
|
||||
});
|
||||
dtask.start();
|
||||
} else {
|
||||
plus.runtime.quit();
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
// //console.log('当前版本号已是最新');
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
})
|
||||
})
|
||||
};
|
||||
|
||||
function jumpPage(ipxSizeBottom) {
|
||||
//跳转页面
|
||||
|
||||
var bSize = 50 + (+ipxSizeBottom) + 'px';
|
||||
var subpages = ['templete/home.html', 'templete/shops.html', '', 'templete/zhuweiba.html',
|
||||
'templete/my.html'
|
||||
];
|
||||
var subpage_style = {
|
||||
top: '0px',
|
||||
bottom: bSize,
|
||||
scrollIndicator: 'none'
|
||||
};
|
||||
var aniShow = {}; //动画显示
|
||||
//首次启动切滑效果
|
||||
mui.plusReady(function() {
|
||||
//刷新
|
||||
window.addEventListener('refresh', function(e) {
|
||||
var my = plus.webview.getWebviewById('templete/my.html'); //触发父页面的自定义事件(refresh),从而进行刷新
|
||||
var zhuweiba = plus.webview.getWebviewById('templete/zhuweiba.html'); //触发父页面的自定义事件(refresh),从而进行刷新
|
||||
mui.fire(my, 'refresh');
|
||||
mui.fire(zhuweiba, 'refresh');
|
||||
})
|
||||
// launchScreen();
|
||||
plus.screen.lockOrientation("portrait-primary");
|
||||
// plus.navigator.setStatusBarStyle('dark');
|
||||
// //console.log(plus.navigator.getStatusBarStyle())
|
||||
var self = plus.webview.currentWebview();
|
||||
for (var i = 0; i < subpages.length; i++) {
|
||||
var temp = {};
|
||||
//http://www.html5plus.org/doc/zh_cn/webview.html#plus.webview.create
|
||||
var sub = plus.webview.create(subpages[i], subpages[i], subpage_style);
|
||||
if (i > 0) {
|
||||
sub.hide();
|
||||
} else {
|
||||
temp[subpages[i]] = "true";
|
||||
mui.extend(aniShow, temp); //合并对象
|
||||
}
|
||||
self.append(sub);
|
||||
}
|
||||
});
|
||||
//当前激活选项
|
||||
var activeTab = subpages[0];
|
||||
//选项卡点击事件
|
||||
mui('.mui-bar-tab').on('tap', 'a', function(e) {
|
||||
var targetTab = this.getAttribute('href');
|
||||
if (targetTab == activeTab) {
|
||||
// var targetTab = plus.webview.getWebviewById(targetTab);
|
||||
// mui.fire(targetTab, 'refresh');
|
||||
return;
|
||||
}
|
||||
//更换标题
|
||||
// title.innerHTML = this.querySelector('.mui-tab-label').innerHTML;
|
||||
//显示目标选项卡
|
||||
//若为iOS平台或非首次显示,则直接显示
|
||||
if (mui.os.ios || aniShow[targetTab]) {
|
||||
plus.webview.show(targetTab);
|
||||
|
||||
} else {
|
||||
//否则,使用fade-in动画,且保存变量
|
||||
var temp = {};
|
||||
temp[targetTab] = "true";
|
||||
mui.extend(aniShow, temp);
|
||||
plus.webview.show(targetTab, "fade-in", 300);
|
||||
}
|
||||
//隐藏当前;
|
||||
plus.webview.hide(activeTab);
|
||||
//更改当前活跃的选项卡
|
||||
activeTab = targetTab;
|
||||
if (targetTab == 'templete/home.html') {}
|
||||
if (targetTab == 'templete/shops.html') {
|
||||
var targetTab = plus.webview.getWebviewById(targetTab);
|
||||
mui.fire(targetTab, 'refresh');
|
||||
}
|
||||
|
||||
if (targetTab == 'templete/zhuweiba.html') {
|
||||
var targetTab = plus.webview.getWebviewById(targetTab);
|
||||
mui.fire(targetTab, 'refresh');
|
||||
}
|
||||
if (targetTab == 'templete/my.html') {
|
||||
var targetTab = plus.webview.getWebviewById(targetTab);
|
||||
mui.fire(targetTab, 'refresh');
|
||||
var token = localStorage.getItem("token");
|
||||
if (!token) {
|
||||
mui.openWindow({
|
||||
url: 'templete/login.html',
|
||||
id: 'templete/login.html',
|
||||
styles: {
|
||||
top: '0px', //新页面顶部位置
|
||||
bottom: '0px', //新页面底部位置
|
||||
width: '100%', //新页面宽度,默认为100%
|
||||
height: '100%' //新页面高度,默认为100%
|
||||
},
|
||||
extras: {},
|
||||
createNew: false,
|
||||
show: {},
|
||||
waiting: {
|
||||
autoShow: true, //自动显示等待框,默认为true
|
||||
title: '正在加载...', //等待对话框上显示的提示内容
|
||||
options: {}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function nav(num) {
|
||||
//console.log(num);
|
||||
$('.mui-tab-item span .img').each(function(a) {
|
||||
|
||||
if (a == 2) {
|
||||
|
||||
} else if (num == a && a != 2) {
|
||||
// //console.log(a);
|
||||
$(this).attr('src', 'http://img.zgqlg.com.cn/static/app2/img/nav_' + a + '_1.png?version='+localStorage.getItem('version'));
|
||||
} else {
|
||||
$(this).attr('src', 'http://img.zgqlg.com.cn/static/app2/img/nav_' + a + '_0.png?version='+localStorage.getItem('version'));
|
||||
}
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
$('.mui-bar').on('tap', '.mui-tab-item', function(e) {
|
||||
var num = $(this).attr('data-num');
|
||||
if (num == 2) {
|
||||
$('.nav_in').addClass('shun');
|
||||
$('.nav_out').addClass('ni');
|
||||
} else {
|
||||
$('.nav_in').removeClass('shun');
|
||||
$('.nav_out').removeClass('ni');
|
||||
}
|
||||
nav(num);
|
||||
|
||||
})
|
||||
document.addEventListener('plusready', function() {
|
||||
checkArguments();
|
||||
}, false);
|
||||
// 判断启动方式
|
||||
function checkArguments() {
|
||||
var args = plus.runtime.arguments;
|
||||
if (args) {
|
||||
// 处理args参数,如打开新页面等
|
||||
var url;
|
||||
var id;
|
||||
var datago = {};
|
||||
var arrgo = args.slice(args.indexOf('//') + 2).split(': ');
|
||||
// //console.log(args.slice(args.indexOf('//')+2).split(':'))
|
||||
if (arrgo[0] == 'goods_id') {
|
||||
url = 'details.html';
|
||||
id = arrgo[1];
|
||||
datago = {
|
||||
data_id: arrgo[1]
|
||||
}
|
||||
} else if (arrgo[0] == 'shop_id') {
|
||||
url = 'storeout.html';
|
||||
id = arrgo[1];
|
||||
datago = {
|
||||
shopId: arrgo[1]
|
||||
}
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
||||
mui.openWindow({
|
||||
url: 'templete/' + url,
|
||||
id: url + id,
|
||||
styles: {
|
||||
top: '0px', //新页面顶部位置
|
||||
bottom: '0px', //新页面底部位置
|
||||
width: '100%', //新页面宽度,默认为100%
|
||||
height: '100%' //新页面高度,默认为100%
|
||||
},
|
||||
extras: datago,
|
||||
createNew: false, //是否重复创建同样id的webview,默认为false:不重复创建,直接显示
|
||||
show: {},
|
||||
waiting: {
|
||||
autoShow: true, //自动显示等待框,默认为true
|
||||
title: '正在加载...', //等待对话框上显示的提示内容
|
||||
options: {}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// 处理从后台恢复
|
||||
document.addEventListener('newintent', function() {
|
||||
checkArguments();
|
||||
}, false);
|
Reference in New Issue
Block a user