mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
rename progress guard
This commit is contained in:
parent
4c7c5c1da1
commit
bdde606ee5
@ -6,16 +6,19 @@ import NProgress from 'nprogress'
|
|||||||
NProgress.configure({ showSpinner: false })
|
NProgress.configure({ showSpinner: false })
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 前置守卫
|
* 进度条开始
|
||||||
* @param to
|
* @param to
|
||||||
* @param form
|
* @param form
|
||||||
* @param next
|
* @param next
|
||||||
*/
|
*/
|
||||||
const beforeGuard = (to, from, next) => {
|
const progressStart = (to, from, next) => {
|
||||||
// start progress bar
|
// start progress bar
|
||||||
|
if (!NProgress.isStarted()) {
|
||||||
NProgress.start()
|
NProgress.start()
|
||||||
|
}
|
||||||
next()
|
next()
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 登录守卫
|
* 登录守卫
|
||||||
* @param to
|
* @param to
|
||||||
@ -28,7 +31,6 @@ const loginGuard = (to, from, next, options) => {
|
|||||||
if (!loginIgnore.includes(to) && !checkAuthorization()) {
|
if (!loginIgnore.includes(to) && !checkAuthorization()) {
|
||||||
message.warning('登录已失效,请重新登录')
|
message.warning('登录已失效,请重新登录')
|
||||||
next({path: '/login'})
|
next({path: '/login'})
|
||||||
NProgress.done()
|
|
||||||
} else {
|
} else {
|
||||||
next()
|
next()
|
||||||
}
|
}
|
||||||
@ -78,17 +80,17 @@ const redirectGuard = (to, from, next, options) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 后置守卫
|
* 进度条结束
|
||||||
* @param to
|
* @param to
|
||||||
* @param form
|
* @param form
|
||||||
* @param options
|
* @param options
|
||||||
*/
|
*/
|
||||||
const afterGuard = () => {
|
const progressDone = () => {
|
||||||
// finish progress bar
|
// finish progress bar
|
||||||
NProgress.done()
|
NProgress.done()
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
beforeEach: [beforeGuard, loginGuard, authorityGuard, redirectGuard],
|
beforeEach: [progressStart, loginGuard, authorityGuard, redirectGuard],
|
||||||
afterEach: [afterGuard]
|
afterEach: [progressDone]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user