-
Notifications
You must be signed in to change notification settings - Fork 759
/
app.js
64 lines (60 loc) · 1.43 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
53
54
55
56
57
58
59
60
61
62
63
64
/*
*
* 微慕小程序开源版
* author: jianbo
* organization: 微慕 www.minapper.com
* github: https://github.com/iamxjb/winxin-app-watch-life.net
* 技术支持微信号:iamxjb
* Copyright (c) 2017 微慕 https://www.minapper.com All rights reserved.
*
*/
import * as api from 'utils/new/api.js'
import * as util from 'utils/new/util.js'
import { colorUI } from './utils/uiconfig'
App({
colorUI,
onLaunch: function () {
this.updateManager();
// wx.setEnableDebug({
// enableDebug: true
// })
},
/*小程序主动更新
*/
updateManager() {
if (!wx.canIUse('getUpdateManager')) {
return false;
}
const updateManager = wx.getUpdateManager();
updateManager.onCheckForUpdate(function (res) {
});
updateManager.onUpdateReady(function () {
wx.showModal({
title: '有新版本',
content: '新版本已经准备好,即将重启',
showCancel: false,
success(res) {
if (res.confirm) {
updateManager.applyUpdate()
}
}
});
});
updateManager.onUpdateFailed(function () {
wx.showModal({
title: '更新提示',
content: '新版本下载失败',
showCancel: false
})
});
},
globalData: {
userInfo: null,
openid: '',
isGetUserInfo: false,
isGetOpenid: false
},
// 新封装的wx.request
$api: api,
$util: util
})