From 512adf7a2798523f28f3aaae82c6d2ac184e6eb7 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Sun, 8 Feb 2026 16:35:50 +0900 Subject: [PATCH] =?UTF-8?q?=ED=9A=8C=EC=9B=90=20=ED=86=B5=EA=B3=84=20?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=EC=97=90=20=EC=95=A0=ED=94=8C=20?= =?UTF-8?q?=EA=B0=80=EC=9E=85=20=EC=88=98=20=EC=B6=94=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 63ce0e1..7708a53 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_apple_count }} + {{ total_sign_up_line_count }} @@ -108,6 +111,10 @@ {{ item.signUpGoogleCount.toLocaleString() }} + + @@ -158,6 +165,7 @@ export default { total_sign_up_email_count: 0, total_sign_up_kakao_count: 0, total_sign_up_google_count: 0, + total_sign_up_apple_count: 0, total_sign_up_line_count: 0, total_sign_out_count: 0, total_payment_member_count: 0, @@ -195,6 +203,12 @@ export default { sortable: false, value: 'signUpGoogleCount', }, + { + text: '애플 가입 수', + align: 'center', + sortable: false, + value: 'signUpAppleCount', + }, { text: '라인 가입 수', align: 'center', @@ -267,6 +281,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_apple_count = data.totalSignUpAppleCount this.total_sign_up_line_count = data.totalSignUpLineCount this.total_sign_out_count = data.totalSignOutCount this.total_payment_member_count = data.totalPaymentMemberCount