From 9fa87d6cd056da9b1d8092527fb9262eaf0159a1 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Thu, 6 Jun 2024 23:40:13 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EC=BB=A4=EB=AE=A4=EB=8B=88=ED=8B=B0=20?= =?UTF-8?q?=EC=A0=95=EC=82=B0=20-=20=EB=82=A0=EC=A7=9C=20=EC=9D=B4?= =?UTF-8?q?=EB=8F=99=20=ED=9B=84=20=EC=A1=B0=ED=9A=8C=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/CalculateCommunityPost.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Calculate/CalculateCommunityPost.vue b/src/views/Calculate/CalculateCommunityPost.vue index 798e55b..217f0fb 100644 --- a/src/views/Calculate/CalculateCommunityPost.vue +++ b/src/views/Calculate/CalculateCommunityPost.vue @@ -38,7 +38,7 @@ color="#9970ff" dark depressed - @click="getCalculateContentDonation" + @click="getCalculateCommunityPost" > 조회 -- 2.40.1 From b1014cf1e8dc5fd8913e6788ec50307aba54bdad Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Thu, 6 Jun 2024 23:52:11 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EC=BB=A4=EB=AE=A4=EB=8B=88=ED=8B=B0=20?= =?UTF-8?q?=EC=A0=95=EC=82=B0=20-=20=EC=97=91=EC=85=80=EB=8B=A4=EC=9A=B4?= =?UTF-8?q?=EB=A1=9C=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Calculate/CalculateCommunityPost.vue | 66 ++++++++++++++++++- 1 file changed, 65 insertions(+), 1 deletion(-) diff --git a/src/views/Calculate/CalculateCommunityPost.vue b/src/views/Calculate/CalculateCommunityPost.vue index 217f0fb..3fda528 100644 --- a/src/views/Calculate/CalculateCommunityPost.vue +++ b/src/views/Calculate/CalculateCommunityPost.vue @@ -44,8 +44,26 @@ - + + + + + 엑셀 다운로드 + + + @@ -118,6 +136,52 @@ export default { page_size: 20, total_page: 0, items: [], + columns: [ + { + label: '날짜', + field: 'date', + }, + { + label: '크리에이터', + field: 'nickname', + }, + { + label: '내용(앞 10글자)', + field: 'title' + }, + { + label: '판매금액(캔)', + field: 'can', + }, + { + label: '구매유저수', + field: 'numberOfPurchase', + }, + { + label: '합계(캔)', + field: 'totalCan', + }, + { + label: '원화', + field: 'totalKrw', + }, + { + label: '수수료\n(6.6%)', + field: 'paymentFee', + }, + { + label: '정산금액', + field: 'settlementAmount', + }, + { + label: '원천세\n(3.3%)', + field: 'tax', + }, + { + label: '입금액', + field: 'depositAmount', + } + ], headers: [ { text: '날짜', -- 2.40.1