123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <script>
- import config from './config'
- import store from '@/store'
- import {
- getToken
- } from '@/utils/auth'
-
- export default {
- onLaunch: function() {
- this.initApp();
- uni.addInterceptor("reLaunch", {
- invoke(e) {
- // 因为刷新后进行后退会调用这个路径,所以需要劫持然后调用back方法。
- if (e.url == "/") {
- history.back();
- return false;
- }
- },
- });
- },
- methods: {
- // 初始化应用
- initApp() {
- // 初始化应用配置
- this.initConfig()
- // 检查用户登录状态
- //#ifdef H5
- this.checkLogin()
- //#endif
- },
- initConfig() {
- this.globalData.config = config
- },
- checkLogin() {
- if (!getToken()) {
- this.$tab.reLaunch('/pages/login')
- }
- }
- }
- }
- </script>
-
- <style lang="scss">
- @import '@/static/scss/index.scss'
- </style>
|