콘텐츠 정산 - 헤더 순서 변경 #7
|
@ -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',
|
||||
},
|
||||
],
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue