feat: add disk monitor contracts and sql

This commit is contained in:
2026-04-22 21:42:35 +08:00
parent 455d394682
commit 2314b03404
6 changed files with 293 additions and 0 deletions

View File

@@ -83,6 +83,22 @@ export const staticRouter: RouteRecordRaw[] = [
title: '500'
}
},
{
path: '/systemMonitor',
name: 'systemMonitor',
component: () => import('@/views/systemMonitor/index.vue'),
meta: {
title: '系统监控'
}
},
{
path: '/systemMonitor/diskMonitor',
name: 'diskMonitor',
component: () => import('@/views/systemMonitor/diskMonitor/index.vue'),
meta: {
title: '磁盘监控'
}
},
{
path: '/:pathMatch(.*)*',
component: () => import('@/components/ErrorMessage/404.vue')