-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.vue
58 lines (55 loc) · 1.42 KB
/
App.vue
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
<!--
* @Date: 2021-09-20 01:55:52
* @LastEditors: AaronChu
* @LastEditTime: 2021-10-30 22:59:23
-->
<script>
import { type } from './api/index'
export default {
onLaunch: async function () {
uni.setStorageSync('collapse', true)
const updateManager = uni.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate)
})
updateManager.onUpdateReady(function (res) {
uni.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success(res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
},
})
})
updateManager.onUpdateFailed(function (res) {
// 新的版本下载失败
console.log('download error')
uni.showModal({
title: '提示',
content: '新版小程序下载失败\n请自行退出程序,手动删除本程序,再次搜寻',
confirmText: '知道了',
})
})
},
onShow: function () {
// 获取服务提供商
this.$store.dispatch('getProvider')
},
onHide: function () {},
}
</script>
<style lang="scss">
::-webkit-scrollbar {
display: none;
}
/*每个页面公共css */
@import 'uview-ui/index.scss';
.page {
height: 100vh;
background: #f2f2f2;
}
</style>