-
Notifications
You must be signed in to change notification settings - Fork 158
/
app.js
52 lines (51 loc) · 1.87 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
App({
onLaunch: function() {
// 获取小程序更新机制兼容
if (wx.canIUse('getUpdateManager')) {
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function(res) {
// 请求完新版本信息的回调
if (res.hasUpdate) {
updateManager.onUpdateReady(function() {
wx.showModal({
title: '更新提示',
content: '新版本已经上线啦~,为了获得更好的体验,建议立即更新',
showCancel: false,
confirmColor: "#5677FC",
success: function(res) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
})
})
updateManager.onUpdateFailed(function() {
// 新的版本下载失败
wx.showModal({
title: '更新失败',
content: '新版本更新失败,为了获得更好的体验,请您删除当前小程序,重新搜索打开',
confirmColor: "#5677FC",
showCancel: false
})
})
}
})
} else {
// 当前微信版本过低,无法使用该功能
}
},
onError(err) {
//全局错误监听
//console.log("发生错误:"+err)
// const res = wx.getSystemInfoSync()
// let errMsg = "手机品牌:" + res.brand + ";手机型号:" + res.model + ";微信版本号:" + res.version + ";操作系统版本:" + res.system + ";客户端平台:" + res.platform + ";错误描述:" + err;
},
globalData: {
isLogin: wx.getStorageSync("thorui_mobile") ? true : false,
version: "3.0.0",
isOnline:true,
mobile:wx.getStorageSync("thorui_mobile") || "",
statusBarHeight:0,
navigationBarHeight:0,
navigationBarWidth:0
}
})