-
Notifications
You must be signed in to change notification settings - Fork 8
/
App.vue
52 lines (38 loc) · 882 Bytes
/
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
<script>
import {
login
} from "@/common/util/system.js";
export default {
onLaunch: function() {
login(); //开始登录
/* 如果是微信 */
//#ifdef MP-WEIXIN
uni.showShareMenu({
withShareTicket: true,
menus: ['shareAppMessage', 'shareTimeline']
})
/* 自动监测小程序是否有新版本 */
/* 这个是异步的 */
if (wx.canIUse('getUpdateManager')) {
const updateManager = wx.getUpdateManager(); //获取更新管理器
/* 如果有更新则直接更新 */
updateManager.onUpdateReady(function() {
updateManager.applyUpdate()
})
}
//#endif
},
onShow: function() {
},
onHide: function() {
}
}
</script>
<style lang="scss">
/*每个页面公共css */
@import '@/uni_modules/uni-scss/index.scss';
// 设置整个项目的背景色
page {
background-color: #f6f6f6;
}
</style>