커뮤니티 정산 페이지 추가

This commit is contained in:
Yu Sung
2024-05-29 01:02:17 +09:00
parent 36b0442878
commit 512ae21a48
3 changed files with 264 additions and 1 deletions

View File

@@ -16,4 +16,17 @@ async function getCalculateContentDonation(startDate, endDate) {
return Vue.axios.get('/admin/calculate/content-donation-list?startDateStr=' + startDate + '&endDateStr=' + endDate);
}
export { getCalculateLive, getCalculateContent, getCumulativeSalesByContent, getCalculateContentDonation }
async function getCalculateCommunityPost(startDate, endDate, page, size) {
return Vue.axios.get(
'/admin/calculate/community-post?startDateStr=' +
startDate + '&endDateStr=' + endDate + "&page=" + (page - 1) + "&size=" + size
);
}
export {
getCalculateLive,
getCalculateContent,
getCumulativeSalesByContent,
getCalculateContentDonation,
getCalculateCommunityPost
}