라이브 정산 페이지 추가

This commit is contained in:
Yu Sung
2023-10-04 00:34:22 +09:00
parent 9a4bbbe241
commit 787643977d
3 changed files with 336 additions and 1 deletions

7
src/api/calculate.js Normal file
View File

@@ -0,0 +1,7 @@
import Vue from 'vue';
async function getCalculateLive(startDate, endDate) {
return Vue.axios.get('/creator-admin/calculate/live?startDateStr=' + startDate + '&endDateStr=' + endDate);
}
export { getCalculateLive }