Compare commits
2 Commits
e0c63df2a6
...
4baf253b7e
| Author | SHA1 | Date | |
|---|---|---|---|
| 4baf253b7e | |||
|
|
512adf7a27 |
@@ -73,6 +73,9 @@
|
|||||||
<td>
|
<td>
|
||||||
{{ total_sign_up_google_count }}
|
{{ total_sign_up_google_count }}
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
{{ total_sign_up_apple_count }}
|
||||||
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ total_sign_up_line_count }}
|
{{ total_sign_up_line_count }}
|
||||||
</td>
|
</td>
|
||||||
@@ -108,6 +111,10 @@
|
|||||||
{{ item.signUpGoogleCount.toLocaleString() }}
|
{{ item.signUpGoogleCount.toLocaleString() }}
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<template v-slot:item.signUpAppleCount="{ item }">
|
||||||
|
{{ item.signUpAppleCount.toLocaleString() }}
|
||||||
|
</template>
|
||||||
|
|
||||||
<template v-slot:item.signUpLineCount="{ item }">
|
<template v-slot:item.signUpLineCount="{ item }">
|
||||||
{{ item.signUpLineCount.toLocaleString() }}
|
{{ item.signUpLineCount.toLocaleString() }}
|
||||||
</template>
|
</template>
|
||||||
@@ -158,6 +165,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_apple_count: 0,
|
||||||
total_sign_up_line_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,
|
||||||
@@ -195,6 +203,12 @@ export default {
|
|||||||
sortable: false,
|
sortable: false,
|
||||||
value: 'signUpGoogleCount',
|
value: 'signUpGoogleCount',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
text: '애플 가입 수',
|
||||||
|
align: 'center',
|
||||||
|
sortable: false,
|
||||||
|
value: 'signUpAppleCount',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: '라인 가입 수',
|
text: '라인 가입 수',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
@@ -267,6 +281,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_apple_count = data.totalSignUpAppleCount
|
||||||
this.total_sign_up_line_count = data.totalSignUpLineCount
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user