콘텐츠 정산 - 헤더 순서 변경

This commit is contained in:
Yu Sung 2023-11-10 22:51:27 +09:00
parent 6076412b45
commit 400717991f
1 changed files with 15 additions and 13 deletions

View File

@ -59,7 +59,6 @@
<td colspan="5"> <td colspan="5">
합계 합계
</td> </td>
<td>{{ sumField('orderPrice').toLocaleString() }} </td>
<td>{{ sumField('numberOfPeople').toLocaleString() }}</td> <td>{{ sumField('numberOfPeople').toLocaleString() }}</td>
<td>{{ sumField('totalCan').toLocaleString() }} </td> <td>{{ sumField('totalCan').toLocaleString() }} </td>
<td>{{ sumField('totalKrw').toLocaleString() }} </td> <td>{{ sumField('totalKrw').toLocaleString() }} </td>
@ -67,6 +66,7 @@
<td>{{ sumField('settlementAmount').toLocaleString() }} </td> <td>{{ sumField('settlementAmount').toLocaleString() }} </td>
<td>{{ sumField('tax').toLocaleString() }} </td> <td>{{ sumField('tax').toLocaleString() }} </td>
<td>{{ sumField('depositAmount').toLocaleString() }} </td> <td>{{ sumField('depositAmount').toLocaleString() }} </td>
<td />
</tr> </tr>
</template> </template>
@ -123,6 +123,12 @@ export default {
end_date: null, end_date: null,
items: [], items: [],
headers: [ headers: [
{
text: '판매일',
align: 'center',
sortable: false,
value: 'saleDate',
},
{ {
text: '크리에이터', text: '크리에이터',
align: 'center', align: 'center',
@ -133,18 +139,8 @@ export default {
text: '제목', text: '제목',
sortable: false, sortable: false,
value: 'title', value: 'title',
},
{
text: '등록일',
align: 'center', align: 'center',
sortable: false, width: "300px"
value: 'registrationDate',
},
{
text: '판매일',
align: 'center',
sortable: false,
value: 'saleDate',
}, },
{ {
text: '구분', text: '구분',
@ -199,7 +195,13 @@ export default {
align: 'center', align: 'center',
sortable: false, sortable: false,
value: 'depositAmount', value: 'depositAmount',
} },
{
text: '등록일',
align: 'center',
sortable: false,
value: 'registrationDate',
},
], ],
} }
}, },