From 2cbee4806d7e5ec894ce3efa2a27a558e40b0c60 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Thu, 26 Feb 2026 20:04:42 +0900 Subject: [PATCH] =?UTF-8?q?=EC=B1=84=EB=84=90=20=ED=9B=84=EC=9B=90=20?= =?UTF-8?q?=EC=A0=95=EC=82=B0=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=A0=9C?= =?UTF-8?q?=EC=9E=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/calculate.js | 10 +- src/router/index.js | 5 + .../Calculate/CalculateChannelDonation.vue | 281 ++++++++++++++++++ 3 files changed, 295 insertions(+), 1 deletion(-) create mode 100644 src/views/Calculate/CalculateChannelDonation.vue diff --git a/src/api/calculate.js b/src/api/calculate.js index 6736418..43ab14b 100644 --- a/src/api/calculate.js +++ b/src/api/calculate.js @@ -29,10 +29,18 @@ async function getCalculateCommunityPost(startDate, endDate, page, size) { ); } +async function getCalculateChannelDonation(startDate, endDate, page, size) { + return Vue.axios.get( + '/creator-admin/calculate/channel-donation?startDateStr=' + + startDate + '&endDateStr=' + endDate + "&page=" + (page - 1) + "&size=" + size + ); +} + export { getCalculateLive, getCalculateContent, getCumulativeSalesByContent, getCalculateContentDonation, - getCalculateCommunityPost + getCalculateCommunityPost, + getCalculateChannelDonation } diff --git a/src/router/index.js b/src/router/index.js index e2eec06..b5444eb 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -60,6 +60,11 @@ const routes = [ name: 'CalculateCommunityPost', component: () => import(/* webpackChunkName: "calculate" */ '../views/Calculate/CalculateCommunityPost.vue') }, + { + path: '/calculate/channel-donation', + name: 'CalculateChannelDonation', + component: () => import(/* webpackChunkName: "calculate" */ '../views/Calculate/CalculateChannelDonation.vue') + }, { path: '/signature', name: 'SignatureManagement', diff --git a/src/views/Calculate/CalculateChannelDonation.vue b/src/views/Calculate/CalculateChannelDonation.vue new file mode 100644 index 0000000..fdd2359 --- /dev/null +++ b/src/views/Calculate/CalculateChannelDonation.vue @@ -0,0 +1,281 @@ + + + + + -- 2.49.1