bug fixed: 修复搜索框能检索隐藏路由问题

This commit is contained in:
ray_wuhao 2023-07-04 14:54:01 +08:00
parent 6acc7b6500
commit cec5166970
2 changed files with 4 additions and 4 deletions

View File

@ -97,7 +97,7 @@ const GlobalSeach = defineComponent({
const filterArr = (options: AppMenuOption[]) => { const filterArr = (options: AppMenuOption[]) => {
options.forEach((curr) => { options.forEach((curr) => {
if (curr.children?.length) { if (curr.children?.length && validMenuItemShow(curr)) {
filterArr(curr.children) filterArr(curr.children)
} }

View File

@ -72,11 +72,11 @@ export const validMenuItemShow = (option: AppMenuOption) => {
return false return false
} }
if (!sameLevel && !hidden) { if (hidden) {
return true return false
} }
return !hidden ? true : false return true
} }
/** /**