Compare commits

...

2 Commits

Author SHA1 Message Date
klaus b5c2941c0d Merge pull request '앱 실행 수 추가' (#65) from test into main
Reviewed-on: #65
2025-03-28 05:58:43 +00:00
Yu Sung 2eb179a18e 앱 실행 수 추가 2025-03-28 12:27:10 +09:00
1 changed files with 11 additions and 0 deletions

View File

@ -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',