Compare commits

..

No commits in common. "c2838be2ed045768566a8452b182cfd334e5c0a8" and "b5c2941c0d1d2fff864b22c1527e2dda25696a27" have entirely different histories.

1 changed files with 0 additions and 15 deletions

View File

@ -64,9 +64,6 @@
<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>
@ -84,10 +81,6 @@
{{ 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>
@ -125,7 +118,6 @@ 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,
@ -145,12 +137,6 @@ export default {
sortable: false, sortable: false,
value: 'signUpCount', value: 'signUpCount',
}, },
{
text: '본인인증 수',
align: 'center',
sortable: false,
value: 'authCount',
},
{ {
text: '회원탈퇴 수', text: '회원탈퇴 수',
align: 'center', align: 'center',
@ -206,7 +192,6 @@ 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