App.vue 692 B

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