初始化

This commit is contained in:
2026-03-03 09:53:54 +08:00
commit 3f349a35a4
437 changed files with 65639 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
import request from '@/utils/http'
/**
* 基础数据统计
* @returns 响应
*/
export function fetchStatistics() {
return request.get<any>({
url: '/core/system/statistics'
})
}
/**
* 登录统计图表数据
* @returns 响应
*/
export function fetchLoginChart() {
return request.get<any>({
url: '/core/system/loginChart'
})
}
/**
* 登录统计图表数据
* @returns 响应
*/
export function fetchLoginBarChart() {
return request.get<any>({
url: '/core/system/loginBarChart'
})
}