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