fix: 修改充值提醒,钱包显示
All checks were successful
构建并部署前端到生产环境 / build-and-deploy (push) Successful in 47s

This commit is contained in:
sexygoat
2026-04-15 12:09:00 +08:00
parent 1336b86fc2
commit 7ef8615103
3 changed files with 286 additions and 95 deletions

View File

@@ -34,6 +34,24 @@ export const walletApi = {
});
},
// 新的充值订单接口
getRechargeOrders(identifier, page, page_size, status) {
return request({
url: '/api/c/v1/recharge-orders',
method: 'GET',
data: { identifier, page, page_size, status }
});
},
// 获取充值订单详情
getRechargeOrderDetail(identifier, rechargeOrderId) {
return request({
url: `/api/c/v1/recharge-orders/${rechargeOrderId}`,
method: 'GET',
data: { identifier }
});
},
getTransactions(identifier, page, page_size, params = {}) {
return request({
url: '/api/c/v1/wallet/transactions',