Files
certd/packages/ui/certd-client/src/router/source/modules/certd.ts
2023-01-29 13:44:19 +08:00

42 lines
894 B
TypeScript

export const certdResources = [
{
title: "证书自动化",
name: "certd",
path: "/certd",
redirect: "/certd/pipeline",
meta: {
icon: "ion:key-outline",
auth: true
},
children: [
{
title: "证书自动化流水线",
name: "pipeline",
path: "/certd/pipeline",
component: "/certd/pipeline/index.vue",
meta: {
icon: "ion:analytics-sharp"
}
},
{
title: "编辑流水线",
name: "pipelineEdit",
path: "/certd/pipeline/detail",
component: "/certd/pipeline/detail.vue",
meta: {
isMenu: false
}
},
{
title: "授权管理",
name: "access",
path: "/certd/access",
component: "/certd/access/index.vue",
meta: {
icon: "ion:disc-outline"
}
}
]
}
];