Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
ant-design-pro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
duanledexianxianxian
ant-design-pro
Commits
16821599
Unverified
Commit
16821599
authored
Jan 10, 2019
by
ιε°θͺ
Committed by
GitHub
Jan 10, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dynamic pursuit authority from server
parent
fd116eed
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
0 deletions
+43
-0
mock/route.js
mock/route.js
+5
-0
src/app.js
src/app.js
+38
-0
No files found.
mock/route.js
0 β 100644
View file @
16821599
export
default
{
'
/api/auth_routes
'
:
{
'
/form/advanced-form
'
:
{
authority
:
[
'
admin
'
,
'
user
'
]
},
},
};
src/app.js
0 β 100644
View file @
16821599
import
fetch
from
'
dva/fetch
'
;
export
const
dva
=
{
config
:
{
onError
(
err
)
{
err
.
preventDefault
();
},
},
};
let
authRoutes
=
null
;
function
ergodicRoutes
(
routes
,
authKey
,
authority
)
{
routes
.
forEach
(
element
=>
{
if
(
element
.
path
===
authKey
)
{
Object
.
assign
(
element
.
authority
,
authority
||
[]);
}
else
if
(
element
.
routes
)
{
ergodicRoutes
(
element
.
routes
,
authKey
,
authority
);
}
return
element
;
});
}
export
function
patchRoutes
(
routes
)
{
Object
.
keys
(
authRoutes
).
map
(
authKey
=>
ergodicRoutes
(
routes
,
authKey
,
authRoutes
[
authKey
].
authority
)
);
window
.
g_routes
=
routes
;
}
export
function
render
(
oldRender
)
{
fetch
(
'
/api/auth_routes
'
)
.
then
(
res
=>
res
.
json
())
.
then
(
ret
=>
{
authRoutes
=
ret
;
oldRender
();
});
}
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