feat(charge-refund): 캔 환불 프로세스 추가

This commit is contained in:
Yu Sung
2026-03-05 18:13:41 +09:00
parent 60ee25564b
commit 0e4b38ce3e
2 changed files with 62 additions and 11 deletions

View File

@@ -11,4 +11,8 @@ async function getChargeStatusDetail(startDate, paymentGateway, currency) {
);
}
export { getChargeStatus, getChargeStatusDetail }
async function refundCharge(chargeId) {
return Vue.axios.post('/admin/charge/refund', { chargeId });
}
export { getChargeStatus, getChargeStatusDetail, refundCharge }