Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ant-design-pro-vue
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tianzhuanghu
ant-design-pro-vue
Commits
57ff2fa9
Commit
57ff2fa9
authored
Dec 08, 2018
by
musnow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add router redirect
parent
2fa7907b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
15 deletions
+28
-15
permission.js
src/permission.js
+28
-15
No files found.
src/permission.js
View file @
57ff2fa9
...
@@ -5,11 +5,11 @@ import store from './store'
...
@@ -5,11 +5,11 @@ import store from './store'
import
NProgress
from
'nprogress'
// progress bar
import
NProgress
from
'nprogress'
// progress bar
import
'nprogress/nprogress.css'
// progress bar style
import
'nprogress/nprogress.css'
// progress bar style
import
notification
from
'ant-design-vue/es/notification'
import
notification
from
'ant-design-vue/es/notification'
import
{
ACCESS_TOKEN
}
from
"@/store/mutation-types"
import
{
ACCESS_TOKEN
}
from
'@/store/mutation-types'
NProgress
.
configure
({
showSpinner
:
false
})
// NProgress Configuration
NProgress
.
configure
({
showSpinner
:
false
})
// NProgress Configuration
const
whiteList
=
[
'/user/login'
,
'/user/register'
,
'/user/register-result'
]
// no redirect whitelist
const
whiteList
=
[
'/user/login'
,
'/user/register'
,
'/user/register-result'
]
// no redirect whitelist
router
.
beforeEach
((
to
,
from
,
next
)
=>
{
router
.
beforeEach
((
to
,
from
,
next
)
=>
{
NProgress
.
start
()
// start progress bar
NProgress
.
start
()
// start progress bar
...
@@ -21,33 +21,46 @@ router.beforeEach((to, from, next) => {
...
@@ -21,33 +21,46 @@ router.beforeEach((to, from, next) => {
NProgress
.
done
()
NProgress
.
done
()
}
else
{
}
else
{
if
(
store
.
getters
.
roles
.
length
===
0
)
{
if
(
store
.
getters
.
roles
.
length
===
0
)
{
store
.
dispatch
(
'GetInfo'
).
then
(
res
=>
{
store
.
dispatch
(
'GetInfo'
)
.
then
(
res
=>
{
const
roles
=
res
.
result
&&
res
.
result
.
role
const
roles
=
res
.
result
&&
res
.
result
.
role
store
.
dispatch
(
'GenerateRoutes'
,
{
roles
}).
then
(()
=>
{
// 根据roles权限生成可访问的路由表
store
.
dispatch
(
'GenerateRoutes'
,
{
roles
}).
then
(()
=>
{
router
.
addRoutes
(
store
.
getters
.
addRouters
)
// 动态添加可访问路由表
// 根据roles权限生成可访问的路由表
next
({
...
to
,
replace
:
true
})
// hack方法 确保addRoutes已完成 ,set the replace: true so the navigation will not leave a history record
// 动态添加可访问路由表
router
.
addRoutes
(
store
.
getters
.
addRouters
)
const
redirect
=
decodeURIComponent
(
from
.
query
.
redirect
||
to
.
path
)
if
(
to
.
path
===
redirect
)
{
// hack方法 确保addRoutes已完成 ,set the replace: true so the navigation will not leave a history record
next
({
...
to
,
replace
:
true
})
}
else
{
// 跳转到目的路由
next
({
path
:
redirect
})
}
})
})
.
catch
(()
=>
{
notification
.
error
({
message
:
'错误'
,
description
:
'请求用户信息失败,请重试'
})
})
}).
catch
(()
=>
{
notification
.
error
({
message
:
'错误'
,
description
:
'请求用户信息失败,请重试'
})
store
.
dispatch
(
'Logout'
).
then
(()
=>
{
store
.
dispatch
(
'Logout'
).
then
(()
=>
{
next
({
path
:
'/user/login'
})
next
({
path
:
'/user/login'
,
query
:
{
redirect
:
to
.
fullPath
}
})
})
})
})
})
}
else
{
}
else
{
next
()
next
()
}
}
}
}
}
else
{
}
else
{
if
(
whiteList
.
indexOf
(
to
.
path
)
!==
-
1
)
{
// 在免登录白名单,直接进入
if
(
whiteList
.
indexOf
(
to
.
path
)
!==
-
1
)
{
// 在免登录白名单,直接进入
next
()
next
()
}
else
{
}
else
{
next
(
'/user/login'
)
next
(
{
path
:
'/user/login'
,
query
:
{
redirect
:
to
.
fullPath
}
}
)
NProgress
.
done
()
// if current page is login will not trigger afterEach hook, so manually handle it
NProgress
.
done
()
// if current page is login will not trigger afterEach hook, so manually handle it
}
}
}
}
})
})
router
.
afterEach
(()
=>
{
router
.
afterEach
(()
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment