Compare commits
No commits in common. "9f1675e82d20afa27621f28e0ded684a44a2867c" and "c2838be2ed045768566a8452b182cfd334e5c0a8" have entirely different histories.
9f1675e82d
...
c2838be2ed
|
@ -90,6 +90,7 @@
|
|||
<td colspan="4">
|
||||
총합계
|
||||
</td>
|
||||
<td>{{ sumField('loginCount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('launchCount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('signUpCount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('firstPaymentCount').toLocaleString() }}</td>
|
||||
|
@ -98,7 +99,6 @@
|
|||
<td>{{ sumField('repeatPaymentTotalAmount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('allPaymentCount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('allPaymentTotalAmount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('loginCount').toLocaleString() }}</td>
|
||||
</tr>
|
||||
</template>
|
||||
|
||||
|
@ -118,6 +118,10 @@
|
|||
{{ item.pidName }}
|
||||
</template>
|
||||
|
||||
<template v-slot:item.loginCount="{ item }">
|
||||
{{ item.loginCount.toLocaleString() }}
|
||||
</template>
|
||||
|
||||
<template v-slot:item.launchCount="{ item }">
|
||||
{{ item.launchCount.toLocaleString() }}
|
||||
</template>
|
||||
|
@ -149,10 +153,6 @@
|
|||
<template v-slot:item.allPaymentTotalAmount="{ item }">
|
||||
{{ item.allPaymentTotalAmount.toLocaleString() }}
|
||||
</template>
|
||||
|
||||
<template v-slot:item.loginCount="{ item }">
|
||||
{{ item.loginCount.toLocaleString() }}
|
||||
</template>
|
||||
</v-data-table>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
@ -211,6 +211,12 @@ export default {
|
|||
sortable: false,
|
||||
value: 'pidName',
|
||||
},
|
||||
{
|
||||
text: '로그인 수',
|
||||
align: 'center',
|
||||
sortable: false,
|
||||
value: 'loginCount',
|
||||
},
|
||||
{
|
||||
text: '앱 실행',
|
||||
align: 'center',
|
||||
|
@ -258,12 +264,6 @@ export default {
|
|||
align: 'center',
|
||||
sortable: false,
|
||||
value: 'allPaymentTotalAmount',
|
||||
},
|
||||
{
|
||||
text: '로그인 수',
|
||||
align: 'center',
|
||||
sortable: false,
|
||||
value: 'loginCount',
|
||||
}
|
||||
],
|
||||
items: [],
|
||||
|
|
Loading…
Reference in New Issue