Compare commits
2 Commits
d5c01d8d23
...
b5c2941c0d
Author | SHA1 | Date |
---|---|---|
|
b5c2941c0d | |
![]() |
2eb179a18e |
|
@ -91,6 +91,7 @@
|
|||
총합계
|
||||
</td>
|
||||
<td>{{ sumField('loginCount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('launchCount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('signUpCount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('firstPaymentCount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('firstPaymentTotalAmount').toLocaleString() }}</td>
|
||||
|
@ -121,6 +122,10 @@
|
|||
{{ item.loginCount.toLocaleString() }}
|
||||
</template>
|
||||
|
||||
<template v-slot:item.launchCount="{ item }">
|
||||
{{ item.launchCount.toLocaleString() }}
|
||||
</template>
|
||||
|
||||
<template v-slot:item.signUpCount="{ item }">
|
||||
{{ item.signUpCount.toLocaleString() }}
|
||||
</template>
|
||||
|
@ -212,6 +217,12 @@ export default {
|
|||
sortable: false,
|
||||
value: 'loginCount',
|
||||
},
|
||||
{
|
||||
text: '앱 실행',
|
||||
align: 'center',
|
||||
sortable: false,
|
||||
value: 'launchCount',
|
||||
},
|
||||
{
|
||||
text: '가입수',
|
||||
align: 'center',
|
||||
|
|
Loading…
Reference in New Issue