This commit is contained in:
yuanteng 2025-03-04 08:00:00 +08:00
parent 56c2a8ca40
commit d94b5d635c
3 changed files with 4 additions and 15 deletions

View File

@ -14,7 +14,7 @@
text-color="#fff"
router
active-text-color="#ffd04b"
:default-openeds="['0', '1']"
:default-openeds="['0']"
>
<!-- 遍历 menuRoutes动态渲染菜单项 -->
<template v-for="(item, index) in menuRoutes">
@ -153,16 +153,16 @@ const menuRoutes = computed(() => {
// layout
const adjustedRoutes = routes.flatMap((route) => {
// 'layout'
if (route.path === "/" && route.children) {
if (route.path === '/' && route.children) {
return route.children.map((child) => ({
...child,
path: child.path,
meta: child.meta,
}));
}
console.log('map-->',route);
//
if (route.meta?.hidden) {
if (route.meta?.hidden ) {
console.log('11',route.children);
return [];
}
return route;

View File

@ -18,7 +18,6 @@ import { ArrowRight } from '@element-plus/icons-vue'
import { computed } from 'vue';
import { useRouter } from 'vue-router';
const router = useRouter()
console.log('当前路由--->', router.currentRoute.value.matched)
const routers = computed(() => { //meta
return router.currentRoute.value.matched.filter(item => item.meta.title)
})

View File

@ -263,16 +263,6 @@ export const constantRoute = [
title: '写真订单详情' ,
hidden: true
}
},
{
path: '/PendingOutfitOrder',
name: '待处理写真预约订单',
component: ()=> import("@/views/CostumeAppointments/PendingOutfitOrder.vue"),
meta: {
title: '待处理写真预约订单' ,
icon: 'Notification',
hidden: false
}
}
]
},