后台管理功能开发,AI配置管理

This commit is contained in:
2025-10-30 14:50:44 +08:00
parent dc0413d084
commit 8b6e3d0815
23 changed files with 4463 additions and 4 deletions
+14
View File
@@ -49,6 +49,20 @@ const routes: RouteRecordRaw[] = [
}
]
},
{
path: '/aiconfig',
component: Layout,
redirect: '/aiconfig/list',
meta: { title: 'AI配置管理', icon: 'Setting' },
children: [
{
path: 'list',
name: 'AiConfigList',
component: () => import('@/views/aiconfig/AiConfigList.vue'),
meta: { title: 'AI配置列表' }
}
]
},
{
path: '/:pathMatch(.*)*',
name: 'NotFound',