82 lines
1.6 KiB
TypeScript
82 lines
1.6 KiB
TypeScript
export interface MenuItem {
|
|
url: string
|
|
title: string
|
|
icon?: string
|
|
isActive?: boolean
|
|
items?: MenuItem[]
|
|
}
|
|
|
|
export const withoutLayoutRoutes = [
|
|
"/login",
|
|
"/component/label/picture/standalone",
|
|
]
|
|
|
|
export const componentList: MenuItem[] = [
|
|
{
|
|
title: "管理平台",
|
|
url: "management",
|
|
icon: "SystemIcon",
|
|
items: [
|
|
{
|
|
title: "个人中心",
|
|
url: "person",
|
|
icon: "PersonalMenuIcon",
|
|
items: [
|
|
{
|
|
title: "个人看板",
|
|
url: "dashboard",
|
|
},
|
|
{
|
|
title: "个人日报",
|
|
url: "report",
|
|
},
|
|
{
|
|
title: "我的收藏",
|
|
url: "collection",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "项目管理",
|
|
url: "project",
|
|
icon: "TaskMenuIcon",
|
|
items: [
|
|
{
|
|
title: "全部项目",
|
|
url: "all",
|
|
},
|
|
{
|
|
title: "动态项目",
|
|
url: "dynamic",
|
|
},
|
|
{
|
|
title: "项目审核",
|
|
url: "audit",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "团队管理",
|
|
url: "team",
|
|
icon: "AuthMenuIcon",
|
|
items: [
|
|
{
|
|
title: "员工管理",
|
|
url: "employee",
|
|
},
|
|
{
|
|
title: "组织管理",
|
|
url: "organization",
|
|
},
|
|
{
|
|
title: "团队日报",
|
|
url: "dailypaper",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
]
|
|
|
|
export const showList: MenuItem[] = []
|