일별 전체 회원 수 통계

- 본인인증 수 추가
This commit is contained in:
Yu Sung 2025-03-31 12:48:07 +09:00
parent 2eb179a18e
commit c81b31ddeb
1 changed files with 15 additions and 0 deletions

View File

@ -64,6 +64,9 @@
<td>
{{ total_sign_up_count }}
</td>
<td>
{{ total_auth_count }}
</td>
<td>
{{ total_sign_out_count }}
</td>
@ -81,6 +84,10 @@
{{ item.signUpCount.toLocaleString() }}
</template>
<template v-slot:item.authCount="{ item }">
{{ item.authCount.toLocaleString() }}
</template>
<template v-slot:item.signOutCount="{ item }">
{{ item.signOutCount.toLocaleString() }}
</template>
@ -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