xieb
2025-03-06 8b23471d428d7d0a6444726cb5c1603a8b3d4010
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
35
36
37
38
39
40
41
42
/*
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2022-08-18 16:16:10
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2023-05-04 11:09:35
 * @FilePath: \web\bigScreen\src\permission.js
 * @Description: 路由守卫
 * 
 * Copyright (c) 2022 by shuishen 1109946754@qq.com, All Rights Reserved. 
 */
import router from '@/router/page/index'
import {
    getToken
} from './utils/auth'
 
router.beforeEach((to, from, next) => {
    // window._axiosPromiseArr && window._axiosPromiseArr.length && window._axiosPromiseArr.forEach((ele, index) => {
    //     ele.cancel()
    //     delete window._axiosPromiseArr[index]
    //     console.clear()
    // })
 
    const meta = to.meta || {}
    next()
 
    // if (getToken()) {
    //     if (to.path === '/login') { // 如果登录成功访问登录页跳转到主页
    //         next({
    //             path: '/'
    //         })
    //     } else {
    //         next()
    //     }
    // } else {
    //     // 判断是否需要认证,没有登录访问去登录页
    //     if (meta.isAuth === false) {
    //         next()
    //     } else {
    //         window.open('https://sk.hubeishuiyi.cn/business/', "_self")
    //     }
    // }
})