充值日志:接入完成

This commit is contained in:
YunaiV
2023-12-18 23:04:24 +08:00
parent 6584a70fa0
commit f8ea20060f
2 changed files with 54 additions and 48 deletions
+13 -1
View File
@@ -39,7 +39,19 @@ const PayWalletApi = {
method: 'POST',
data,
});
}
},
// 获得钱包充值记录分页
getWalletRechargePage: (params) => {
return request({
url: '/app-api/pay/wallet-recharge/page',
method: 'GET',
params,
custom: {
showError: false,
showLoading: false,
},
});
},
};
export default PayWalletApi;