Split admin operations dashboard route

This commit is contained in:
elky
2026-06-26 01:48:37 +08:00
parent c76d6b6396
commit 063834e95b
2 changed files with 7 additions and 1 deletions
+2 -1
View File
@@ -1180,7 +1180,8 @@ const navigation = computed(() => {
{
title: '概览',
items: [
{ name: '运维总览', href: '/admin/dashboard', icon: Home },
{ name: '仪表盘', href: '/admin/dashboard', icon: Home },
{ name: '运维总览', href: '/admin/operations', icon: Activity },
{ name: '健康监控', href: '/admin/health-monitor', icon: Activity },
{ name: '用户统计', href: '/admin/user-stats', icon: BarChart3 },
{ name: '成本分析', href: '/admin/cost-analysis', icon: Gauge },
+5
View File
@@ -169,6 +169,11 @@ const routes: RouteRecordRaw[] = [
{
path: 'dashboard',
name: 'AdminDashboard',
component: () => importWithRetry(() => import('@/views/shared/Dashboard.vue'))
},
{
path: 'operations',
name: 'AdminOperationsDashboard',
component: () => importWithRetry(() => import('@/views/admin/AdminOperationsDashboard.vue'))
},
{