Compare commits
2 Commits
2e1891ab08
...
47dd32939f
Author | SHA1 | Date |
---|---|---|
|
47dd32939f | |
![]() |
46f966f324 |
|
@ -64,6 +64,15 @@
|
||||||
<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>
|
||||||
|
@ -84,6 +93,18 @@
|
||||||
{{ 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>
|
||||||
|
@ -127,6 +148,9 @@ 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,
|
||||||
|
@ -145,6 +169,24 @@ 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',
|
||||||
|
@ -208,6 +250,9 @@ 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