일별 전체 회원 수 통계 #66
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue