Compare commits
2 Commits
c2838be2ed
...
9f1675e82d
Author | SHA1 | Date |
---|---|---|
|
9f1675e82d | |
![]() |
0a47b5d33f |
|
@ -90,7 +90,6 @@
|
||||||
<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>
|
||||||
|
@ -99,6 +98,7 @@
|
||||||
<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,10 +118,6 @@
|
||||||
{{ 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>
|
||||||
|
@ -153,6 +149,10 @@
|
||||||
<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,12 +211,6 @@ export default {
|
||||||
sortable: false,
|
sortable: false,
|
||||||
value: 'pidName',
|
value: 'pidName',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
text: '로그인 수',
|
|
||||||
align: 'center',
|
|
||||||
sortable: false,
|
|
||||||
value: 'loginCount',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: '앱 실행',
|
text: '앱 실행',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
@ -264,6 +258,12 @@ export default {
|
||||||
align: 'center',
|
align: 'center',
|
||||||
sortable: false,
|
sortable: false,
|
||||||
value: 'allPaymentTotalAmount',
|
value: 'allPaymentTotalAmount',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: '로그인 수',
|
||||||
|
align: 'center',
|
||||||
|
sortable: false,
|
||||||
|
value: 'loginCount',
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
items: [],
|
items: [],
|
||||||
|
|
Loading…
Reference in New Issue