일별 전체 회원 수 통계 #66

Merged
klaus merged 1 commits from test into main 2025-03-31 03:54:57 +00:00
1 changed files with 15 additions and 0 deletions

View File

@ -64,6 +64,9 @@
<td> <td>
{{ total_sign_up_count }} {{ total_sign_up_count }}
</td> </td>
<td>
{{ total_auth_count }}
</td>
<td> <td>
{{ total_sign_out_count }} {{ total_sign_out_count }}
</td> </td>
@ -81,6 +84,10 @@
{{ item.signUpCount.toLocaleString() }} {{ item.signUpCount.toLocaleString() }}
</template> </template>
<template v-slot:item.authCount="{ item }">
{{ item.authCount.toLocaleString() }}
</template>
<template v-slot:item.signOutCount="{ item }"> <template v-slot:item.signOutCount="{ item }">
{{ item.signOutCount.toLocaleString() }} {{ item.signOutCount.toLocaleString() }}
</template> </template>
@ -118,6 +125,7 @@ export default {
is_loading: false, is_loading: false,
start_date: null, start_date: null,
end_date: null, end_date: null,
total_auth_count: 0,
total_sign_up_count: 0, total_sign_up_count: 0,
total_sign_out_count: 0, total_sign_out_count: 0,
total_payment_member_count: 0, total_payment_member_count: 0,
@ -137,6 +145,12 @@ export default {
sortable: false, sortable: false,
value: 'signUpCount', value: 'signUpCount',
}, },
{
text: '본인인증 수',
align: 'center',
sortable: false,
value: 'authCount',
},
{ {
text: '회원탈퇴 수', text: '회원탈퇴 수',
align: 'center', align: 'center',
@ -192,6 +206,7 @@ export default {
if (res.status === 200 && res.data.success === true) { if (res.status === 200 && res.data.success === true) {
const data = res.data.data const data = res.data.data
this.total_auth_count = data.totalAuthCount
this.total_sign_up_count = data.totalSignUpCount this.total_sign_up_count = data.totalSignUpCount
this.total_sign_out_count = data.totalSignOutCount this.total_sign_out_count = data.totalSignOutCount
this.total_payment_member_count = data.totalPaymentMemberCount this.total_payment_member_count = data.totalPaymentMemberCount