feat: 对接OSS配置管理

This commit is contained in:
AN
2025-04-27 14:53:55 +08:00
parent 74fcdc4e2c
commit 19fe1b05eb
13 changed files with 738 additions and 7 deletions

View File

@ -112,6 +112,31 @@ const dynamicConstantRoutes: ElegantRoute[] = [
hideInMenu: true,
icon: 'simple-icons:authy'
}
},
{
name: 'system',
path: '/system',
component: 'layout.base',
meta: {
title: 'system',
i18nKey: 'route.system',
localIcon: 'menu-system',
order: 1
},
children: [
{
name: 'system_oss-config',
path: '/oss-config',
component: 'view.system_oss-config',
meta: {
title: 'system_oss-config',
i18nKey: 'route.system_oss-config',
constant: true,
hideInMenu: true,
icon: 'hugeicons:configuration-01'
}
}
]
}
];