앱 실행 수 추가
This commit is contained in:
parent
3ca2a36fa8
commit
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