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

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