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
9a34d47c
Commit
9a34d47c
authored
Mar 24, 2018
by
Reed Sun
Committed by
ddcat1115
Mar 24, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve the display of bread crumbs (#1053)
* Improve the display of bread crumbs * unuse template literals
parent
6225aa6d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
src/layouts/BasicLayout.js
src/layouts/BasicLayout.js
+20
-1
No files found.
src/layouts/BasicLayout.js
View file @
9a34d47c
...
...
@@ -38,6 +38,25 @@ const getRedirect = (item) => {
};
getMenuData
().
forEach
(
getRedirect
);
/**
* 获取面包屑映射
* @param {Object} menuData 菜单配置
* @param {Object} routerData 路由配置
*/
const
getBreadcrumbNameMap
=
(
menuData
,
routerData
)
=>
{
const
result
=
{};
const
childResult
=
{};
for
(
const
i
of
menuData
)
{
if
(
!
routerData
[
i
.
path
])
{
result
[
i
.
path
]
=
i
;
}
if
(
i
.
children
)
{
Object
.
assign
(
childResult
,
getBreadcrumbNameMap
(
i
.
children
,
routerData
));
}
}
return
Object
.
assign
({},
routerData
,
result
,
childResult
);
};
const
query
=
{
'
screen-xs
'
:
{
maxWidth
:
575
,
...
...
@@ -76,7 +95,7 @@ class BasicLayout extends React.PureComponent {
const
{
location
,
routerData
}
=
this
.
props
;
return
{
location
,
breadcrumbNameMap
:
routerData
,
breadcrumbNameMap
:
getBreadcrumbNameMap
(
getMenuData
(),
routerData
)
,
};
}
componentDidMount
()
{
...
...
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