일자별 콘텐츠 정산 페이지 추가

This commit is contained in:
Yu Sung
2023-11-13 18:59:20 +09:00
parent acca2d3f2d
commit caaa4f9422
3 changed files with 304 additions and 1 deletions

View File

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