Compare commits

..

No commits in common. "9f1675e82d20afa27621f28e0ded684a44a2867c" and "c2838be2ed045768566a8452b182cfd334e5c0a8" have entirely different histories.

1 changed files with 11 additions and 11 deletions

View File

@ -90,6 +90,7 @@
<td colspan="4"> <td colspan="4">
총합계 총합계
</td> </td>
<td>{{ sumField('loginCount').toLocaleString() }}</td>
<td>{{ sumField('launchCount').toLocaleString() }}</td> <td>{{ sumField('launchCount').toLocaleString() }}</td>
<td>{{ sumField('signUpCount').toLocaleString() }}</td> <td>{{ sumField('signUpCount').toLocaleString() }}</td>
<td>{{ sumField('firstPaymentCount').toLocaleString() }}</td> <td>{{ sumField('firstPaymentCount').toLocaleString() }}</td>
@ -98,7 +99,6 @@
<td>{{ sumField('repeatPaymentTotalAmount').toLocaleString() }}</td> <td>{{ sumField('repeatPaymentTotalAmount').toLocaleString() }}</td>
<td>{{ sumField('allPaymentCount').toLocaleString() }}</td> <td>{{ sumField('allPaymentCount').toLocaleString() }}</td>
<td>{{ sumField('allPaymentTotalAmount').toLocaleString() }}</td> <td>{{ sumField('allPaymentTotalAmount').toLocaleString() }}</td>
<td>{{ sumField('loginCount').toLocaleString() }}</td>
</tr> </tr>
</template> </template>
@ -118,6 +118,10 @@
{{ item.pidName }} {{ item.pidName }}
</template> </template>
<template v-slot:item.loginCount="{ item }">
{{ item.loginCount.toLocaleString() }}
</template>
<template v-slot:item.launchCount="{ item }"> <template v-slot:item.launchCount="{ item }">
{{ item.launchCount.toLocaleString() }} {{ item.launchCount.toLocaleString() }}
</template> </template>
@ -149,10 +153,6 @@
<template v-slot:item.allPaymentTotalAmount="{ item }"> <template v-slot:item.allPaymentTotalAmount="{ item }">
{{ item.allPaymentTotalAmount.toLocaleString() }} {{ item.allPaymentTotalAmount.toLocaleString() }}
</template> </template>
<template v-slot:item.loginCount="{ item }">
{{ item.loginCount.toLocaleString() }}
</template>
</v-data-table> </v-data-table>
</v-col> </v-col>
</v-row> </v-row>
@ -211,6 +211,12 @@ export default {
sortable: false, sortable: false,
value: 'pidName', value: 'pidName',
}, },
{
text: '로그인 수',
align: 'center',
sortable: false,
value: 'loginCount',
},
{ {
text: '앱 실행', text: '앱 실행',
align: 'center', align: 'center',
@ -258,12 +264,6 @@ export default {
align: 'center', align: 'center',
sortable: false, sortable: false,
value: 'allPaymentTotalAmount', value: 'allPaymentTotalAmount',
},
{
text: '로그인 수',
align: 'center',
sortable: false,
value: 'loginCount',
} }
], ],
items: [], items: [],