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.
68 lines
2.3 KiB
68 lines
2.3 KiB
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
import router from './router'
|
|
import store from './store'
|
|
import NProgress from 'nprogress' // progress bar
|
|
import 'nprogress/nprogress.css' // progress bar style
|
|
import { getToken } from '@/utils/auth' // get token from cookie
|
|
import getPageTitle from '@/utils/get-page-title'
|
|
import { roterPre } from '@/settings'
|
|
import { editFormApi } from '@/api/user'
|
|
NProgress.configure({ showSpinner: false }) // NProgress Configuration
|
|
|
|
const whiteList = [`${roterPre}/login`, '/auth-redirect'] // no redirect whitelist
|
|
|
|
router.beforeEach(async(to, from, next) => {
|
|
// start progress bar
|
|
NProgress.start()
|
|
// set page title
|
|
document.title = getPageTitle(to.meta.title)
|
|
|
|
// determine whether the user has logged in
|
|
const hasToken = getToken()
|
|
|
|
if (hasToken) {
|
|
if (to.path === `${roterPre}/login`) {
|
|
// if is logged in, redirect to the home page
|
|
next({ path: '/' })
|
|
NProgress.done()
|
|
} else {
|
|
// await store.dispatch('user/getMenus')
|
|
if(from.fullPath === '/' && from.path !==`${roterPre}/login`){
|
|
editFormApi().then(res => {
|
|
next()
|
|
NProgress.done()
|
|
}).catch(res => {
|
|
next()
|
|
NProgress.done()
|
|
})
|
|
}else{
|
|
next()
|
|
NProgress.done()
|
|
}
|
|
}
|
|
} else {
|
|
/* has no token*/
|
|
if (whiteList.indexOf(to.path) !== -1) {
|
|
// in the free login whitelist, go directly
|
|
next()
|
|
} else {
|
|
// other pages that do not have permission to access are redirected to the login page.
|
|
await store.dispatch('user/resetToken')
|
|
next(`${roterPre}/login?redirect=${to.path}`)
|
|
NProgress.done()
|
|
}
|
|
}
|
|
})
|
|
|
|
router.afterEach(() => {
|
|
// finish progress bar
|
|
NProgress.done()
|
|
})
|
|
|