커뮤니티 정산 페이지 추가
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user