From c81b31ddeba48a0f9a9e9f0bb560d0e99a45229b Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Mon, 31 Mar 2025 12:48:07 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9D=BC=EB=B3=84=20=EC=A0=84=EC=B2=B4=20?= =?UTF-8?q?=ED=9A=8C=EC=9B=90=20=EC=88=98=20=ED=86=B5=EA=B3=84=20-=20?= =?UTF-8?q?=EB=B3=B8=EC=9D=B8=EC=9D=B8=EC=A6=9D=20=EC=88=98=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Member/MemberStatisticsView.vue | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/views/Member/MemberStatisticsView.vue b/src/views/Member/MemberStatisticsView.vue index 685f42b..6765c56 100644 --- a/src/views/Member/MemberStatisticsView.vue +++ b/src/views/Member/MemberStatisticsView.vue @@ -64,6 +64,9 @@ {{ total_sign_up_count }} + + {{ total_auth_count }} + {{ total_sign_out_count }} @@ -81,6 +84,10 @@ {{ item.signUpCount.toLocaleString() }} + + @@ -118,6 +125,7 @@ export default { is_loading: false, start_date: null, end_date: null, + total_auth_count: 0, total_sign_up_count: 0, total_sign_out_count: 0, total_payment_member_count: 0, @@ -137,6 +145,12 @@ export default { sortable: false, value: 'signUpCount', }, + { + text: '본인인증 수', + align: 'center', + sortable: false, + value: 'authCount', + }, { text: '회원탈퇴 수', align: 'center', @@ -192,6 +206,7 @@ export default { if (res.status === 200 && res.data.success === true) { const data = res.data.data + this.total_auth_count = data.totalAuthCount this.total_sign_up_count = data.totalSignUpCount this.total_sign_out_count = data.totalSignOutCount this.total_payment_member_count = data.totalPaymentMemberCount