일자별 콘텐츠 정산 페이지 추가
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user