App.vue 693 B

12345678910111213141516171819202122232425262728293031323334
  1. <script>
  2. import config from './config'
  3. import store from '@/store'
  4. import { getAccessToken } from '@/utils/auth'
  5. export default {
  6. onLaunch: function() {
  7. this.initApp()
  8. },
  9. methods: {
  10. // 初始化应用
  11. initApp() {
  12. // 初始化应用配置
  13. this.initConfig()
  14. // 检查用户登录状态
  15. //#ifdef H5
  16. this.checkLogin()
  17. //#endif
  18. },
  19. initConfig() {
  20. this.globalData.config = config
  21. },
  22. checkLogin() {
  23. if (!getAccessToken()) {
  24. this.$tab.reLaunch('/pages/login')
  25. }
  26. }
  27. }
  28. }
  29. </script>
  30. <style lang="scss">
  31. @import '@/static/scss/index.scss'
  32. </style>