羊只档案页面跳转系谱页面

This commit is contained in:
wyt
2026-02-12 12:37:25 +08:00
parent e7a59de3ae
commit cffa082285
3 changed files with 136 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
import { createWebHistory, createRouter } from 'vue-router'
import { createRouter, createWebHistory } from 'vue-router'
/* Layout */
import Layout from '@/layout'
@@ -83,6 +83,24 @@ export const constantRoutes = [
meta: { title: '个人中心', icon: 'user' }
}
]
},
{
path: '/fileManagement',
component: Layout,
hidden: true, // 若不需要在侧边栏显示「档案管理」菜单,设为 true
redirect: 'noRedirect',
children: [
{
path: 'pedigree', // 最终路径为 /fileManagement/pedigree
component: () => import('@/views/fileManagement/pedigree/index.vue'),
name: 'Pedigree',
meta: {
title: '羊只系谱',
activeMenu: '/fileManagement/pedigree' // 高亮对应的菜单(可选)
}
}
]
}
]
@@ -159,6 +177,28 @@ export const dynamicRoutes = [
}
]
},
{
path: '/fileManagement',
component: Layout,
hidden: false, // 是否在侧边栏显示,默认 false 显示
redirect: 'noRedirect',
name: 'FileManagement',
meta: {
title: '档案管理',
icon: 'example' // 你可以换成合适的图标名(如 'tree'
},
children: [
{
path: 'pedigree', // 最终路径 /fileManagement/pedigree
component: () => import('@/views/fileManagement/pedigree/index.vue'),
name: 'Pedigree',
meta: {
title: '系谱图',
activeMenu: '/fileManagement/pedigree'
}
}
]
}
]
const router = createRouter({