From e73a5345836fb1965407989a0a5cc312eef03cf2 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Thu, 1 Aug 2024 14:13:44 +0900 Subject: [PATCH] =?UTF-8?q?=ED=81=AC=EB=A6=AC=EC=97=90=EC=9D=B4=ED=84=B0?= =?UTF-8?q?=EB=B3=84=20=EC=A0=95=EC=82=B0=20-=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=95=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Calculate/CalculateCommunityByCreator.vue | 2 +- src/views/Calculate/CalculateContentByCreator.vue | 2 +- src/views/Calculate/CalculateLiveByCreator.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/Calculate/CalculateCommunityByCreator.vue b/src/views/Calculate/CalculateCommunityByCreator.vue index 2350081..8bcd22f 100644 --- a/src/views/Calculate/CalculateCommunityByCreator.vue +++ b/src/views/Calculate/CalculateCommunityByCreator.vue @@ -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 diff --git a/src/views/Calculate/CalculateContentByCreator.vue b/src/views/Calculate/CalculateContentByCreator.vue index 87d28bc..5a6117d 100644 --- a/src/views/Calculate/CalculateContentByCreator.vue +++ b/src/views/Calculate/CalculateContentByCreator.vue @@ -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 diff --git a/src/views/Calculate/CalculateLiveByCreator.vue b/src/views/Calculate/CalculateLiveByCreator.vue index 0d79d6e..1acb535 100644 --- a/src/views/Calculate/CalculateLiveByCreator.vue +++ b/src/views/Calculate/CalculateLiveByCreator.vue @@ -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