커뮤니티 정산페이지 추가

This commit is contained in:
Yu Sung
2024-05-27 16:41:31 +09:00
parent 83bbf0a505
commit 3cfa73c37b
3 changed files with 258 additions and 1 deletions

View File

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