first commit
This commit is contained in:
11
src/api/charge_status.js
Normal file
11
src/api/charge_status.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import Vue from 'vue';
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
export { getChargeStatus, getChargeStatusDetail }
|
||||
Reference in New Issue
Block a user