feat: 创建独立的授权管理页面

- 在左侧导航添加授权管理链接(代理管理后)

- 创建独立的授权管理页面,参考版本管理页面样式

- 添加统计卡片显示授权应用总数、活跃授权、授权卡类

- 创建添加/编辑授权页面

- 从代理编辑页面移除授权管理部分

- 添加路由配置
This commit is contained in:
2026-05-09 04:30:46 +08:00
parent f650efc7a1
commit c3536166b7
9 changed files with 950 additions and 301 deletions
+18
View File
@@ -185,6 +185,24 @@ const routes: RouteRecordRaw[] = [
component: () => import('@/pages/admin/agents/[id].vue'),
meta: { title: '编辑代理 - 管理后台' },
},
{
path: 'agent-apps',
name: 'AdminAgentApps',
component: () => import('@/pages/admin/agent-apps/index.vue'),
meta: { title: '授权管理 - 管理后台' },
},
{
path: 'agent-apps/create',
name: 'AdminAgentAppCreate',
component: () => import('@/pages/admin/agent-apps/create.vue'),
meta: { title: '添加授权 - 管理后台' },
},
{
path: 'agent-apps/:id',
name: 'AdminAgentAppEdit',
component: () => import('@/pages/admin/agent-apps/[id].vue'),
meta: { title: '编辑授权 - 管理后台' },
},
{
path: 'finance',
name: 'AdminFinance',