mirror of
https://gitee.com/yiming_chang/vue-pure-admin.git
synced 2024-12-01 18:57:39 +08:00
fix: 修复params
路由传参模式下,面包屑无法找到父级路径问题
This commit is contained in:
parent
6176d9508b
commit
d49b23e8f9
@ -38,9 +38,14 @@ const getBreadcrumb = (): void => {
|
|||||||
currentRoute = findRouteByPath(router.currentRoute.value.path, multiTags);
|
currentRoute = findRouteByPath(router.currentRoute.value.path, multiTags);
|
||||||
}
|
}
|
||||||
// 当前路由的父级路径组成的数组
|
// 当前路由的父级路径组成的数组
|
||||||
const parentRoutes = getParentPaths(router.currentRoute.value.path, routes);
|
const parentRoutes = getParentPaths(
|
||||||
|
router.currentRoute.value.name as string,
|
||||||
|
routes,
|
||||||
|
"name"
|
||||||
|
);
|
||||||
// 存放组成面包屑的数组
|
// 存放组成面包屑的数组
|
||||||
let matched = [];
|
let matched = [];
|
||||||
|
|
||||||
// 获取每个父级路径对应的路由信息
|
// 获取每个父级路径对应的路由信息
|
||||||
parentRoutes.forEach(path => {
|
parentRoutes.forEach(path => {
|
||||||
if (path !== "/") matched.push(findRouteByPath(path, routes));
|
if (path !== "/") matched.push(findRouteByPath(path, routes));
|
||||||
|
@ -92,20 +92,20 @@ function filterNoPermissionTree(data: RouteComponent[]) {
|
|||||||
return filterChildrenTree(newTree);
|
return filterChildrenTree(newTree);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 通过path获取父级路径 */
|
/** 通过指定 `key` 获取父级路径集合,默认 `key` 为 `path` */
|
||||||
function getParentPaths(path: string, routes: RouteRecordRaw[]) {
|
function getParentPaths(value: string, routes: RouteRecordRaw[], key = "path") {
|
||||||
// 深度遍历查找
|
// 深度遍历查找
|
||||||
function dfs(routes: RouteRecordRaw[], path: string, parents: string[]) {
|
function dfs(routes: RouteRecordRaw[], value: string, parents: string[]) {
|
||||||
for (let i = 0; i < routes.length; i++) {
|
for (let i = 0; i < routes.length; i++) {
|
||||||
const item = routes[i];
|
const item = routes[i];
|
||||||
// 找到path则返回父级path
|
// 返回父级path
|
||||||
if (item.path === path) return parents;
|
if (item[key] === value) return parents;
|
||||||
// children不存在或为空则不递归
|
// children不存在或为空则不递归
|
||||||
if (!item.children || !item.children.length) continue;
|
if (!item.children || !item.children.length) continue;
|
||||||
// 往下查找时将当前path入栈
|
// 往下查找时将当前path入栈
|
||||||
parents.push(item.path);
|
parents.push(item.path);
|
||||||
|
|
||||||
if (dfs(item.children, path, parents).length) return parents;
|
if (dfs(item.children, value, parents).length) return parents;
|
||||||
// 深度遍历查找未找到时当前path 出栈
|
// 深度遍历查找未找到时当前path 出栈
|
||||||
parents.pop();
|
parents.pop();
|
||||||
}
|
}
|
||||||
@ -113,10 +113,10 @@ function getParentPaths(path: string, routes: RouteRecordRaw[]) {
|
|||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
return dfs(routes, path, []);
|
return dfs(routes, value, []);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 查找对应path的路由信息 */
|
/** 查找对应 `path` 的路由信息 */
|
||||||
function findRouteByPath(path: string, routes: RouteRecordRaw[]) {
|
function findRouteByPath(path: string, routes: RouteRecordRaw[]) {
|
||||||
let res = routes.find((item: { path: string }) => item.path == path);
|
let res = routes.find((item: { path: string }) => item.path == path);
|
||||||
if (res) {
|
if (res) {
|
||||||
|
Loading…
Reference in New Issue
Block a user