Compare commits

..

No commits in common. "47dd32939fe3d7d811177ab35c121a082a41d5ba" and "2e1891ab089005633c25bf7b85e472b5b424062d" have entirely different histories.

1 changed files with 0 additions and 45 deletions

View File

@ -64,15 +64,6 @@
<td>
{{ total_sign_up_count }}
</td>
<td>
{{ total_sign_up_email_count }}
</td>
<td>
{{ total_sign_up_kakao_count }}
</td>
<td>
{{ total_sign_up_google_count }}
</td>
<td>
{{ total_auth_count }}
</td>
@ -93,18 +84,6 @@
{{ item.signUpCount.toLocaleString() }}
</template>
<template v-slot:item.signUpEmailCount="{ item }">
{{ item.signUpEmailCount.toLocaleString() }}
</template>
<template v-slot:item.signUpKakaoCount="{ item }">
{{ item.signUpKakaoCount.toLocaleString() }}
</template>
<template v-slot:item.signUpGoogleCount="{ item }">
{{ item.signUpGoogleCount.toLocaleString() }}
</template>
<template v-slot:item.authCount="{ item }">
{{ item.authCount.toLocaleString() }}
</template>
@ -148,9 +127,6 @@ export default {
end_date: null,
total_auth_count: 0,
total_sign_up_count: 0,
total_sign_up_email_count: 0,
total_sign_up_kakao_count: 0,
total_sign_up_google_count: 0,
total_sign_out_count: 0,
total_payment_member_count: 0,
page: 1,
@ -169,24 +145,6 @@ export default {
sortable: false,
value: 'signUpCount',
},
{
text: '이메일 가입 수',
align: 'center',
sortable: false,
value: 'signUpEmailCount',
},
{
text: '카카오 가입 수',
align: 'center',
sortable: false,
value: 'signUpKakaoCount',
},
{
text: '구글 가입 수',
align: 'center',
sortable: false,
value: 'signUpGoogleCount',
},
{
text: '본인인증 수',
align: 'center',
@ -250,9 +208,6 @@ export default {
const data = res.data.data
this.total_auth_count = data.totalAuthCount
this.total_sign_up_count = data.totalSignUpCount
this.total_sign_up_email_count = data.totalSignUpEmailCount
this.total_sign_up_kakao_count = data.totalSignUpKakaoCount
this.total_sign_up_google_count = data.totalSignUpGoogleCount
this.total_sign_out_count = data.totalSignOutCount
this.total_payment_member_count = data.totalPaymentMemberCount
this.items = data.items