Files
dafuweng-saiadmin6.x/saiadmin-artd/src/api/dashboard.ts
2026-03-10 12:42:29 +08:00

33 lines
711 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import request from '@/utils/http'
/**
* 大富翁工作台卡片统计(玩家注册、充值、提现、游玩次数,含较上周对比)
* @returns 响应
*/
export function fetchStatistics() {
return request.get<any>({
url: '/core/dice/dashboard/statistics'
})
}
/**
* 近期玩家充值统计近10天每日充值金额
* @returns 响应
*/
export function fetchRechargeChart() {
return request.get<any>({
url: '/core/dice/dashboard/rechargeChart'
})
}
/**
* 月度玩家充值汇总当年1-12月每月充值金额
* @returns 响应
*/
export function fetchRechargeBarChart() {
return request.get<any>({
url: '/core/dice/dashboard/rechargeBarChart'
})
}