钱包 - 钱包余额流水

This commit is contained in:
jason
2023-10-16 22:32:10 +08:00
parent ae2c3f2ad5
commit 8626bccc4c
4 changed files with 94 additions and 99 deletions

View File

@ -0,0 +1,14 @@
import request from '@/config/axios'
export interface WalletTransactionVO {
id: number
walletId: number
title: string
price: number
balance: number
}
// 查询会员钱包流水列表
export const getWalletTransactionPage = async (params) => {
return await request.get({ url: `/pay/wallet-transaction/page`, params })
}