fix: package-list
All checks were successful
构建并部署前端到生产环境 / build-and-deploy (push) Successful in 47s

This commit is contained in:
sexygoat
2026-04-15 15:23:39 +08:00
parent d3a40f0d77
commit 43a13bf863
3 changed files with 18 additions and 5 deletions

View File

@@ -52,6 +52,15 @@ export const walletApi = {
});
},
// 支付充值订单
payRechargeOrder(identifier, rechargeOrderId, paymentMethod) {
return request({
url: `/api/c/v1/recharge-orders/${rechargeOrderId}/pay`,
method: 'POST',
data: { identifier, payment_method: paymentMethod, app_type: APP_TYPE }
});
},
getTransactions(identifier, page, page_size, params = {}) {
return request({
url: '/api/c/v1/wallet/transactions',