- 在App.vue中添加登录状态检查和用户信息获取 - 修改index.vue实现根据用户角色跳转到不同页面 - 更新pages.json调整底部导航栏和页面配置 - 优化user.js中的用户信息存储逻辑
47 lines
942 B
Vue
47 lines
942 B
Vue
<script>
|
|
import config from './config'
|
|
import { getToken } from '@/utils/auth'
|
|
import updateManager from "@/utils/update.js";
|
|
|
|
export default {
|
|
onLaunch: function() {
|
|
this.initApp()
|
|
updateManager.checkUpdate();
|
|
},
|
|
methods: {
|
|
// 初始化应用
|
|
initApp() {
|
|
// 初始化应用配置
|
|
this.initConfig()
|
|
// 检查用户登录状态
|
|
//#ifdef H5
|
|
this.checkLogin()
|
|
//#endif
|
|
// uni.hideTabBar()
|
|
},
|
|
// mounted() {
|
|
// uni.hideTabBar()
|
|
// },
|
|
// onShow() {
|
|
// uni.hideTabBar()
|
|
// },
|
|
initConfig() {
|
|
this.globalData.config = config
|
|
},
|
|
checkLogin() {
|
|
if (!getToken()) {
|
|
this.$tab.reLaunch('/pages/login')
|
|
return;
|
|
}
|
|
this.$store.dispatch('GetInfo')
|
|
}
|
|
}
|
|
}
|
|
|
|
uni.$updateManager = updateManager;
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import '@/static/scss/index.scss'
|
|
</style>
|