feat(admin-can-status): 화폐단위 추가, 충전금액에 NumberFormat style: currency 적용하여 화폐단위 표시
This commit is contained in:
@@ -4,8 +4,11 @@ async function getChargeStatus(startDate, endDate) {
|
||||
return Vue.axios.get('/admin/charge/status?startDateStr=' + startDate + '&endDateStr=' + endDate);
|
||||
}
|
||||
|
||||
async function getChargeStatusDetail(startDate, paymentGateway) {
|
||||
return Vue.axios.get('/admin/charge/status/detail?startDateStr=' + startDate + '&paymentGateway=' + paymentGateway);
|
||||
async function getChargeStatusDetail(startDate, paymentGateway, currency) {
|
||||
return Vue.axios.get('/admin/charge/status/detail?startDateStr=' + startDate
|
||||
+ '&paymentGateway=' + paymentGateway
|
||||
+ '¤cy=' + currency
|
||||
);
|
||||
}
|
||||
|
||||
export { getChargeStatus, getChargeStatusDetail }
|
||||
|
||||
Reference in New Issue
Block a user