You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
734 B

/*
* @Author: your name
* @Date: 2021-10-08 09:26:42
* @LastEditTime: 2021-10-25 09:09:47
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /data-show/src/permission.js
*/
import router from "@/router"
import NProgress from "nprogress"
import "nprogress/nprogress.css"
const whitePath = ['/', '/login', '/industryDataExport','/index']
// console.log(token)
router.beforeEach((to, from, next) => {
NProgress.start()
const token = sessionStorage.getItem('token');
if(!token && !whitePath.includes(to.path)) {
next('/login');
} else {
next()
}
})
router.afterEach(() => {
NProgress.done()
})
export default router