콘텐츠 정산 페이지 추가

This commit is contained in:
Yu Sung
2023-11-10 19:44:26 +09:00
parent 60e5551109
commit 6076412b45
2 changed files with 262 additions and 4 deletions

View File

@@ -4,4 +4,8 @@ async function getCalculateLive(startDate, endDate) {
return Vue.axios.get('/admin/calculate/live?startDateStr=' + startDate + '&endDateStr=' + endDate);
}
export { getCalculateLive }
async function getCalculateContent(startDate, endDate) {
return Vue.axios.get('/admin/calculate/content-list?startDateStr=' + startDate + '&endDateStr=' + endDate);
}
export { getCalculateLive, getCalculateContent }