Compare commits

...

2 Commits

Author SHA1 Message Date
7505269db3 Merge pull request '크리에이터별 정산 - 페이징 추가' (#41) from test into main
Reviewed-on: #41
2024-08-01 05:16:04 +00:00
Yu Sung
e73a534583 크리에이터별 정산 - 페이징 추가 2024-08-01 14:13:44 +09:00
3 changed files with 3 additions and 3 deletions

View File

@@ -286,7 +286,7 @@ export default {
this.is_loading = true
try {
const res = await api.getCalculateCommunityByCreator(this.start_date, this.end_date)
const res = await api.getCalculateCommunityByCreator(this.start_date, this.end_date, this.page, this.page_size)
if (res.status === 200 && res.data.success === true) {
const data = res.data.data

View File

@@ -286,7 +286,7 @@ export default {
this.is_loading = true
try {
const res = await api.getCalculateContentByCreator(this.start_date, this.end_date)
const res = await api.getCalculateContentByCreator(this.start_date, this.end_date, this.page, this.page_size)
if (res.status === 200 && res.data.success === true) {
const data = res.data.data

View File

@@ -286,7 +286,7 @@ export default {
this.is_loading = true
try {
const res = await api.getCalculateLiveByCreator(this.start_date, this.end_date)
const res = await api.getCalculateLiveByCreator(this.start_date, this.end_date, this.page, this.page_size)
if (res.status === 200 && res.data.success === true) {
const data = res.data.data