크리에이터 기준 콘텐츠, 커뮤니티 합계 정산 페이지 추가

This commit is contained in:
Yu Sung
2024-07-08 23:14:38 +09:00
parent d4a0dfb223
commit dba6bff90c
4 changed files with 628 additions and 2 deletions

View File

@@ -45,6 +45,18 @@ async function getCalculateLiveByCreator(startDate, endDate, page, size) {
)
}
async function getCalculateContentByCreator(startDate, endDate, page, size) {
return Vue.axios.get('/admin/calculate/content-by-creator?startDateStr=' +
startDate + '&endDateStr=' + endDate + '&page=' + (page - 1) + '&size=' + size
)
}
async function getCalculateCommunityByCreator(startDate, endDate, page, size) {
return Vue.axios.get('/admin/calculate/community-by-creator?startDateStr=' +
startDate + '&endDateStr=' + endDate + '&page=' + (page - 1) + '&size=' + size
)
}
export {
getCalculateLive,
getCalculateContent,
@@ -53,5 +65,7 @@ export {
getCalculateCommunityPost,
getSettlementRatio,
createCreatorSettlementRatio,
getCalculateLiveByCreator
getCalculateLiveByCreator,
getCalculateContentByCreator,
getCalculateCommunityByCreator
}