콘텐츠별 누적 현황 페이지 추가

This commit is contained in:
Yu Sung
2023-11-13 22:39:46 +09:00
parent 5be8eabb5b
commit df893ab795
5 changed files with 212 additions and 18 deletions

View File

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