광고통계 - 로그인 수를 가장 오른쪽으로 이동
This commit is contained in:
parent
c81b31ddeb
commit
0a47b5d33f
|
@ -90,7 +90,6 @@
|
|||
<td colspan="4">
|
||||
총합계
|
||||
</td>
|
||||
<td>{{ sumField('loginCount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('launchCount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('signUpCount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('firstPaymentCount').toLocaleString() }}</td>
|
||||
|
@ -99,6 +98,7 @@
|
|||
<td>{{ sumField('repeatPaymentTotalAmount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('allPaymentCount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('allPaymentTotalAmount').toLocaleString() }}</td>
|
||||
<td>{{ sumField('loginCount').toLocaleString() }}</td>
|
||||
</tr>
|
||||
</template>
|
||||
|
||||
|
@ -118,10 +118,6 @@
|
|||
{{ item.pidName }}
|
||||
</template>
|
||||
|
||||
<template v-slot:item.loginCount="{ item }">
|
||||
{{ item.loginCount.toLocaleString() }}
|
||||
</template>
|
||||
|
||||
<template v-slot:item.launchCount="{ item }">
|
||||
{{ item.launchCount.toLocaleString() }}
|
||||
</template>
|
||||
|
@ -153,6 +149,10 @@
|
|||
<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,12 +211,6 @@ export default {
|
|||
sortable: false,
|
||||
value: 'pidName',
|
||||
},
|
||||
{
|
||||
text: '로그인 수',
|
||||
align: 'center',
|
||||
sortable: false,
|
||||
value: 'loginCount',
|
||||
},
|
||||
{
|
||||
text: '앱 실행',
|
||||
align: 'center',
|
||||
|
@ -264,6 +258,12 @@ export default {
|
|||
align: 'center',
|
||||
sortable: false,
|
||||
value: 'allPaymentTotalAmount',
|
||||
},
|
||||
{
|
||||
text: '로그인 수',
|
||||
align: 'center',
|
||||
sortable: false,
|
||||
value: 'loginCount',
|
||||
}
|
||||
],
|
||||
items: [],
|
||||
|
|
Loading…
Reference in New Issue