feat: 内容管理员新增知识库管理

This commit is contained in:
王天骄
2026-06-08 17:32:19 +08:00
parent 6e6d54e614
commit ce07eff539
3 changed files with 187 additions and 1 deletions
+1
View File
@@ -19,6 +19,7 @@ const routes: RouteRecordRaw[] = [
{ path: 'institutions', name: 'Institutions', component: () => import('@/views/InstitutionsView.vue'), meta: { title: '机构管理' } },
{ path: 'users', name: 'Users', component: () => import('@/views/UsersView.vue'), meta: { title: '用户权限' } },
{ path: 'settings', name: 'Settings', component: () => import('@/views/SettingsView.vue'), meta: { title: '系统配置' } },
{ path: 'module/knowledge-base', name: 'KnowledgeBase', component: () => import('@/views/KnowledgeBaseView.vue'), meta: { title: '知识库管理' } },
{ path: 'module/:page', name: 'Module', component: () => import('@/views/ModuleView.vue'), meta: { title: '业务模块' } }
]
}