feat(users): integrate user info and services APIs into 3-tab detail panel with proper padding

This commit is contained in:
2026-08-12 00:35:59 +08:00
parent 703d4dc583
commit 1a5489a361
17 changed files with 4127 additions and 382 deletions
+12 -1
View File
@@ -5,6 +5,7 @@ import {
Bot,
ClipboardList,
FileText,
FileJson,
Flag,
FolderTree,
Hash,
@@ -40,6 +41,17 @@ export interface NavGroup {
}
export const NAV_GROUPS: NavGroup[] = [
{
label: '开发工具',
items: [
{
label: 'API 文档',
to: '/api-docs',
icon: FileJson,
permission: 'auth:api-docs:read',
},
],
},
{
label: '分类管理',
items: [
@@ -112,4 +124,3 @@ export function getFirstAccessibleRoute(): string | null {
}
return null
}