-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
83 lines (82 loc) · 2.33 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//app.js
const config = require('./config')
const utils = require('./utils/util')
App({
onLaunch: function() {
if (typeof wx.getUpdateManager === 'function') {
// 处理版本更新的动作
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function(res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate ? '有新版本' : '暂无新版本')
if (res.hasUpdate) {
updateManager.onUpdateReady(function() {
// wx.showModal({
// title: '更新提示',
// content: '新版本已经准备好,是否重启应用?',
// success: function(res) {
// if (res.confirm) {
// // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
// updateManager.applyUpdate()
// }
// }
// })
updateManager.applyUpdate()
})
}
})
updateManager.onUpdateFailed(function() {
// 新的版本下载失败
wx.showModal({
title: '更新提示',
content: '新版本下载失败,请检查您的网络',
showCancel: false
})
})
} else {
wx.showModal({
title: '更新提示',
content: '你的微信当前版本太低,无法完成书城更新,请重启微信来获取最新版本',
showCancel: false
})
}
},
// 前端向后端提交formId
reportFormId: function(type, formId, bookId) {
let self = this
wx.request({
method: 'GET',
url: config.base_url + '/api/upload_formid?type=' + type + '&formId=' + formId + '&bookId=' + (bookId || ''),
header: { Authorization: 'Bearer ' + self.globalData.token },
success: function(res) {
if (!res.data.ok) {
return
}
},
fail: function(err) {
return
}
})
},
navigateTo: function(page) {
let self = this
setTimeout(function() {
wx.navigateTo({
url: page,
fail: err => {
self.navigateTo(page)
}
})
}, 300)
},
onError: function(error) {
return
},
globalData: {
token: '',
userInfo: {}, // 用户基本信息
shareCode: '', // 邀请码
globalSetting: {},
showReaderTips: false
}
})