gaoluyang
2026-06-24 0ce68379718b7c751b8a84aa4b28cbaf072e6c8f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { requestClient } from '#/api/request';
 
export namespace MallPayStatisticsApi {
  /** 支付统计 */
  export interface PaySummaryResp {
    /** 充值金额,单位分 */
    rechargePrice: number;
  }
}
 
/** 获取钱包充值金额 */
export function getWalletRechargePrice() {
  return requestClient.get<MallPayStatisticsApi.PaySummaryResp>(
    '/statistics/pay/summary',
  );
}