适配显示了cpu、硬盘、内存信息

This commit is contained in:
Sun
2024-01-03 18:55:39 +08:00
parent 11ea134be3
commit fe967a9314
10 changed files with 227 additions and 8 deletions
+7
View File
@@ -0,0 +1,7 @@
import { post } from '@/utils/request'
export function getAll<T>() {
return post<T>({
url: '/system/monitor/getAll',
})
}