完善账单详情

This commit is contained in:
wangxiaowei
2025-12-20 23:34:11 +08:00
parent a2f1023de8
commit bbaba61b51
5 changed files with 129 additions and 19 deletions

View File

@ -163,4 +163,11 @@ export function checkDouyinCoupon(data: ICheckDouyinCouponParams) {
*/
export function getUserMember() {
return http.Post<any>('/api/user/UserMember')
}
}
/**
* 流水账单详情
*/
export function getUserBillDetails(id: number) {
return http.Post<any>('/api/user/accountDetails', {id})
}