-
Notifications
You must be signed in to change notification settings - Fork 269
/
Copy pathApp.vue
34 lines (32 loc) · 853 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
<script>
import systemInfo from '@/utils/systemInfo.js'
import store from '@/store'
import {
getToken
} from '@/utils/auth.js'
import {
setRoles
} from '@/utils/roles.js'
export default {
async onLaunch() {
let info = systemInfo.info()
this.$store.commit('SET_WIDTH', info.windowWidth)
this.$store.commit('SET_HEIGHT', info.windowHeight)
if (getToken()) {
store.commit("SET_TOKEN", uni.getStorageSync('token'))
store.commit("SET_AVATAR", uni.getStorageSync('avatar'))
store.commit("SET_NICKNAME", uni.getStorageSync('nickname'))
store.commit("SET_PHONE", uni.getStorageSync('phone'))
}
},
onShow: function() {
},
onHide: function() {
}
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
// @import url("static/icon/iconfont.css");
/*每个页面公共css */
</style>