钱包- 钱包余额查询

This commit is contained in:
jason
2023-10-15 17:47:36 +08:00
parent 8b6ca3028a
commit 90d6f4da9f
5 changed files with 279 additions and 2 deletions

View File

@ -20,3 +20,8 @@ export interface WalletVO {
export const getWallet = async (params: PayWalletUserReqVO) => {
return await request.get<WalletVO>({ url: `/pay/wallet/get`, params })
}
// 查询会员钱包列表
export const getWalletPage = async (params) => {
return await request.get({ url: `/pay/wallet/page`, params })
}