Compare commits
No commits in common. "47dd32939fe3d7d811177ab35c121a082a41d5ba" and "2e1891ab089005633c25bf7b85e472b5b424062d" have entirely different histories.
47dd32939f
...
2e1891ab08
|
@ -64,15 +64,6 @@
|
||||||
<td>
|
<td>
|
||||||
{{ total_sign_up_count }}
|
{{ total_sign_up_count }}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
|
||||||
{{ total_sign_up_email_count }}
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
{{ total_sign_up_kakao_count }}
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
{{ total_sign_up_google_count }}
|
|
||||||
</td>
|
|
||||||
<td>
|
<td>
|
||||||
{{ total_auth_count }}
|
{{ total_auth_count }}
|
||||||
</td>
|
</td>
|
||||||
|
@ -93,18 +84,6 @@
|
||||||
{{ item.signUpCount.toLocaleString() }}
|
{{ item.signUpCount.toLocaleString() }}
|
||||||
</template>
|
</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 }">
|
<template v-slot:item.authCount="{ item }">
|
||||||
{{ item.authCount.toLocaleString() }}
|
{{ item.authCount.toLocaleString() }}
|
||||||
</template>
|
</template>
|
||||||
|
@ -148,9 +127,6 @@ export default {
|
||||||
end_date: null,
|
end_date: null,
|
||||||
total_auth_count: 0,
|
total_auth_count: 0,
|
||||||
total_sign_up_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_sign_out_count: 0,
|
||||||
total_payment_member_count: 0,
|
total_payment_member_count: 0,
|
||||||
page: 1,
|
page: 1,
|
||||||
|
@ -169,24 +145,6 @@ export default {
|
||||||
sortable: false,
|
sortable: false,
|
||||||
value: 'signUpCount',
|
value: 'signUpCount',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
text: '이메일 가입 수',
|
|
||||||
align: 'center',
|
|
||||||
sortable: false,
|
|
||||||
value: 'signUpEmailCount',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: '카카오 가입 수',
|
|
||||||
align: 'center',
|
|
||||||
sortable: false,
|
|
||||||
value: 'signUpKakaoCount',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: '구글 가입 수',
|
|
||||||
align: 'center',
|
|
||||||
sortable: false,
|
|
||||||
value: 'signUpGoogleCount',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: '본인인증 수',
|
text: '본인인증 수',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
@ -250,9 +208,6 @@ export default {
|
||||||
const data = res.data.data
|
const data = res.data.data
|
||||||
this.total_auth_count = data.totalAuthCount
|
this.total_auth_count = data.totalAuthCount
|
||||||
this.total_sign_up_count = data.totalSignUpCount
|
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_sign_out_count = data.totalSignOutCount
|
||||||
this.total_payment_member_count = data.totalPaymentMemberCount
|
this.total_payment_member_count = data.totalPaymentMemberCount
|
||||||
this.items = data.items
|
this.items = data.items
|
||||||
|
|
Loading…
Reference in New Issue