일별 전체 회원 수에 라인 가입자 수를 표에 표시

This commit is contained in:
Yu Sung
2026-02-02 11:26:25 +09:00
parent b728e96c2a
commit fe87dd6b51

View File

@@ -73,6 +73,9 @@
<td> <td>
{{ total_sign_up_google_count }} {{ total_sign_up_google_count }}
</td> </td>
<td>
{{ total_sign_up_line_count }}
</td>
<td> <td>
{{ total_auth_count }} {{ total_auth_count }}
</td> </td>
@@ -105,6 +108,10 @@
{{ item.signUpGoogleCount.toLocaleString() }} {{ item.signUpGoogleCount.toLocaleString() }}
</template> </template>
<template v-slot:item.signUpLineCount="{ item }">
{{ item.signUpLineCount.toLocaleString() }}
</template>
<template v-slot:item.authCount="{ item }"> <template v-slot:item.authCount="{ item }">
{{ item.authCount.toLocaleString() }} {{ item.authCount.toLocaleString() }}
</template> </template>
@@ -151,6 +158,7 @@ export default {
total_sign_up_email_count: 0, total_sign_up_email_count: 0,
total_sign_up_kakao_count: 0, total_sign_up_kakao_count: 0,
total_sign_up_google_count: 0, total_sign_up_google_count: 0,
total_sign_up_line_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,
@@ -187,6 +195,12 @@ export default {
sortable: false, sortable: false,
value: 'signUpGoogleCount', value: 'signUpGoogleCount',
}, },
{
text: '라인 가입 수',
align: 'center',
sortable: false,
value: 'signUpLineCount',
},
{ {
text: '본인인증 수', text: '본인인증 수',
align: 'center', align: 'center',
@@ -253,6 +267,7 @@ export default {
this.total_sign_up_email_count = data.totalSignUpEmailCount this.total_sign_up_email_count = data.totalSignUpEmailCount
this.total_sign_up_kakao_count = data.totalSignUpKakaoCount this.total_sign_up_kakao_count = data.totalSignUpKakaoCount
this.total_sign_up_google_count = data.totalSignUpGoogleCount this.total_sign_up_google_count = data.totalSignUpGoogleCount
this.total_sign_up_line_count = data.totalSignUpLineCount
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