Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-vue-admin
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-vue-admin
Commits
e0dc5cf2
提交
e0dc5cf2
authored
3月 07, 2021
作者:
Vben
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(breadcrumb): ensure that the single-level breadcrumbs jump correctly close #321
上级
d5d4c4b4
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
38 行增加
和
16 行删除
+38
-16
CHANGELOG.zh_CN.md
CHANGELOG.zh_CN.md
+1
-0
Breadcrumb.vue
src/layouts/default/header/components/Breadcrumb.vue
+36
-15
main.ts
src/main.ts
+1
-1
没有找到文件。
CHANGELOG.zh_CN.md
浏览文件 @
e0dc5cf2
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
-
修复树组件 demo 示例样式错误
-
修复树组件 demo 示例样式错误
-
修复账号管理新增未清空旧数据
-
修复账号管理新增未清空旧数据
-
form 组件应允许 setFieldsValue 方法值为 null 或者 undefined
-
form 组件应允许 setFieldsValue 方法值为 null 或者 undefined
-
确保单级面包屑正确跳转
## 2.0.2 (2021-03-04)
## 2.0.2 (2021-03-04)
...
...
src/layouts/default/header/components/Breadcrumb.vue
浏览文件 @
e0dc5cf2
...
@@ -72,10 +72,25 @@
...
@@ -72,10 +72,25 @@
if
(
currentRoute
.
value
.
meta
?.
currentActiveMenu
)
{
if
(
currentRoute
.
value
.
meta
?.
currentActiveMenu
)
{
filterBreadcrumbList
.
push
((
currentRoute
.
value
as
unknown
)
as
RouteLocationMatched
);
filterBreadcrumbList
.
push
((
currentRoute
.
value
as
unknown
)
as
RouteLocationMatched
);
}
}
// routes.value = filterBreadcrumbList.length === 1 ? [] : filterBreadcrumbList;
routes
.
value
=
subRouteExtraction
(
filterBreadcrumbList
);
routes
.
value
=
filterBreadcrumbList
;
});
});
function
subRouteExtraction
(
routeList
:
RouteLocationMatched
[])
{
const
resultRoutes
:
RouteLocationMatched
[]
=
[];
routeList
.
forEach
((
route
)
=>
{
if
(
route
.
children
?.
length
===
1
)
{
const
subRoute
=
route
.
children
[
0
]
as
RouteLocationMatched
;
const
subRouteName
=
subRoute
.
name
as
string
;
const
routeName
=
route
.
name
;
if
(
subRouteName
&&
`
${
subRouteName
}
Parent`
===
routeName
)
{
route
=
subRoute
;
}
}
resultRoutes
.
push
(
route
);
});
return
resultRoutes
;
}
function
filterItem
(
list
:
RouteLocationMatched
[])
{
function
filterItem
(
list
:
RouteLocationMatched
[])
{
let
resultList
=
filter
(
list
,
(
item
)
=>
{
let
resultList
=
filter
(
list
,
(
item
)
=>
{
const
{
meta
}
=
item
;
const
{
meta
}
=
item
;
...
@@ -83,15 +98,14 @@
...
@@ -83,15 +98,14 @@
if
(
!
meta
)
{
if
(
!
meta
)
{
return
false
;
return
false
;
}
}
const
{
title
,
hideBreadcrumb
,
hideMenu
}
=
meta
;
const
{
title
,
hideBreadcrumb
,
hideMenu
}
=
meta
;
if
(
!
title
||
hideBreadcrumb
||
hideMenu
)
{
if
(
!
title
||
hideBreadcrumb
||
hideMenu
)
{
return
false
;
return
false
;
}
}
return
true
;
return
true
;
}).
filter
((
item
)
=>
!
item
.
meta
?.
hideBreadcrumb
||
!
item
.
meta
?.
hideMenu
);
}).
filter
((
item
)
=>
!
item
.
meta
?.
hideBreadcrumb
||
!
item
.
meta
?.
hideMenu
);
// resultList = resultList.filter((item) => item.path !== PageEnum.BASE_HOME);
return
resultList
;
return
resultList
;
}
}
...
@@ -101,7 +115,8 @@
...
@@ -101,7 +115,8 @@
children
,
children
,
redirect
,
redirect
,
meta
,
meta
,
// components
// components
}
=
route
;
}
=
route
;
// const isParent =
// const isParent =
...
@@ -123,23 +138,29 @@
...
@@ -123,23 +138,29 @@
if
(
redirect
&&
isString
(
redirect
))
{
if
(
redirect
&&
isString
(
redirect
))
{
go
(
redirect
);
go
(
redirect
);
}
else
{
}
else
{
const
ps
=
paths
.
slice
(
1
);
let
goPath
=
''
;
const
lastPath
=
ps
.
pop
()
||
''
;
if
(
paths
.
length
===
1
)
{
const
parentPath
=
ps
.
pop
()
||
''
;
goPath
=
paths
[
0
];
let
path
=
`
${
parentPath
}
/
${
lastPath
}
`
;
}
else
{
path
=
/^
\/
/
.
test
(
path
)
?
path
:
`/
${
path
}
`
;
const
ps
=
paths
.
slice
(
1
);
go
(
path
);
const
lastPath
=
ps
.
pop
()
||
''
;
const
parentPath
=
ps
.
pop
()
||
''
;
goPath
=
`
${
parentPath
}
/
${
lastPath
}
`
;
}
goPath
=
/^
\/
/
.
test
(
goPath
)
?
goPath
:
`/
${
goPath
}
`
;
go
(
goPath
);
}
}
}
}
function
hasRedirect
(
routes
:
RouteLocationMatched
[],
route
:
RouteLocationMatched
)
{
function
hasRedirect
(
routes
:
RouteLocationMatched
[],
route
:
RouteLocationMatched
)
{
if
(
route
?.
meta
?.
isLink
)
{
return
true
;
}
if
(
routes
.
indexOf
(
route
)
===
routes
.
length
-
1
)
{
if
(
routes
.
indexOf
(
route
)
===
routes
.
length
-
1
)
{
return
false
;
return
false
;
}
}
// if (route?.meta?.isLink) {
// return true;
// }
return
true
;
return
true
;
}
}
...
...
src/main.ts
浏览文件 @
e0dc5cf2
...
@@ -51,7 +51,7 @@ import { isDevMode } from '/@/utils/env';
...
@@ -51,7 +51,7 @@ import { isDevMode } from '/@/utils/env';
// The development environment takes effect
// The development environment takes effect
if
(
isDevMode
())
{
if
(
isDevMode
())
{
app
.
config
.
performance
=
true
;
//
app.config.performance = true;
window
.
__APP__
=
app
;
window
.
__APP__
=
app
;
}
}
})();
})();
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论