광고통계 - 로그인 수를 가장 오른쪽으로 이동 #67

Merged
klaus merged 1 commits from test into main 2025-04-02 02:11:35 +00:00
1 changed files with 11 additions and 11 deletions

View File

@ -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: [],