Add statistic route

This commit is contained in:
2023-12-19 18:19:43 +08:00
parent 810c301398
commit 151dd4d5d5
3 changed files with 969 additions and 952 deletions

View File

@@ -7,9 +7,19 @@ const system: RouteJsonObject[] = [
absolutePath: '/system',
id: 'system',
component: React.lazy(() => import('@/pages/system')),
name: '系统管理',
icon: React.lazy(() => import('~icons/fatweb/setting.jsx')),
menu: true
},
{
path: 'statistic',
absolutePath: '/system/statistic',
id: 'system-statistic',
component: React.lazy(() => import('@/pages/system/Statistic')),
name: '系统概况',
icon: React.lazy(() => import('~icons/fatweb/chart.jsx')),
menu: true
menu: true,
autoHide: true
},
{
path: 'settings',