mirror of
https://gitee.com/niucloud-team/niucloud.git
synced 2026-01-29 22:08:10 +00:00
18 lines
377 B
TypeScript
18 lines
377 B
TypeScript
import request from '@/utils/request'
|
|
|
|
/***************************************************** 统计信息 **************************************************/
|
|
/**
|
|
* 获取统计信息
|
|
*/
|
|
export function getStatInfo() {
|
|
return request.get(`stat/index`)
|
|
}
|
|
|
|
/**
|
|
* 获取站点统计信息
|
|
*/
|
|
export function getSiteStatInfo() {
|
|
return request.get(`stat/siteindex`)
|
|
}
|
|
|