From fe87dd6b5193d121038bb1ee69146006a71add9f Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Mon, 2 Feb 2026 11:26:25 +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=EC=97=90=20=EB=9D=BC=EC=9D=B8=20?= =?UTF-8?q?=EA=B0=80=EC=9E=85=EC=9E=90=20=EC=88=98=EB=A5=BC=20=ED=91=9C?= =?UTF-8?q?=EC=97=90=20=ED=91=9C=EC=8B=9C?= 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 10eab5a..63ce0e1 100644 --- a/src/views/Member/MemberStatisticsView.vue +++ b/src/views/Member/MemberStatisticsView.vue @@ -73,6 +73,9 @@ {{ total_sign_up_google_count }} + + {{ total_sign_up_line_count }} + {{ total_auth_count }} @@ -105,6 +108,10 @@ {{ item.signUpGoogleCount.toLocaleString() }} + + @@ -151,6 +158,7 @@ export default { total_sign_up_email_count: 0, total_sign_up_kakao_count: 0, total_sign_up_google_count: 0, + total_sign_up_line_count: 0, total_sign_out_count: 0, total_payment_member_count: 0, page: 1, @@ -187,6 +195,12 @@ export default { sortable: false, value: 'signUpGoogleCount', }, + { + text: '라인 가입 수', + align: 'center', + sortable: false, + value: 'signUpLineCount', + }, { text: '본인인증 수', align: 'center', @@ -253,6 +267,7 @@ export default { this.total_sign_up_email_count = data.totalSignUpEmailCount this.total_sign_up_kakao_count = data.totalSignUpKakaoCount this.total_sign_up_google_count = data.totalSignUpGoogleCount + this.total_sign_up_line_count = data.totalSignUpLineCount this.total_sign_out_count = data.totalSignOutCount this.total_payment_member_count = data.totalPaymentMemberCount this.items = data.items