Compare commits
No commits in common. "9284f7d5c3594b8454543bff79adeac793ff7f13" and "e6f27a45291bc07dffdbee0ad0a03388a70cf451" have entirely different histories.
9284f7d5c3
...
e6f27a4529
|
@ -116,7 +116,7 @@ const routes = [
|
||||||
component: () => import(/* webpackChunkName: "calculate" */ '../views/Calculate/CalculateLive.vue')
|
component: () => import(/* webpackChunkName: "calculate" */ '../views/Calculate/CalculateLive.vue')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/calculate/content-by-date',
|
path: '/calculate/content',
|
||||||
name: 'CalculateContent',
|
name: 'CalculateContent',
|
||||||
component: () => import(/* webpackChunkName: "calculate" */ '../views/Calculate/CalculateContent.vue')
|
component: () => import(/* webpackChunkName: "calculate" */ '../views/Calculate/CalculateContent.vue')
|
||||||
},
|
},
|
||||||
|
|
|
@ -43,28 +43,6 @@
|
||||||
조회
|
조회
|
||||||
</v-btn>
|
</v-btn>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
|
|
||||||
<v-spacer />
|
|
||||||
|
|
||||||
<v-col cols="2">
|
|
||||||
<vue-excel-xlsx
|
|
||||||
:data="items"
|
|
||||||
:columns="columns"
|
|
||||||
:file-name="'정산'"
|
|
||||||
:file-type="'xlsx'"
|
|
||||||
:sheet-name="'정산'"
|
|
||||||
>
|
|
||||||
<v-btn
|
|
||||||
block
|
|
||||||
color="#9970ff"
|
|
||||||
dark
|
|
||||||
depressed
|
|
||||||
>
|
|
||||||
엑셀 다운로드
|
|
||||||
</v-btn>
|
|
||||||
</vue-excel-xlsx>
|
|
||||||
</v-col>
|
|
||||||
</v-row>
|
</v-row>
|
||||||
<v-row>
|
<v-row>
|
||||||
<v-col>
|
<v-col>
|
||||||
|
@ -144,60 +122,6 @@ export default {
|
||||||
start_date: null,
|
start_date: null,
|
||||||
end_date: null,
|
end_date: null,
|
||||||
items: [],
|
items: [],
|
||||||
columns: [
|
|
||||||
{
|
|
||||||
label: '판매일',
|
|
||||||
field: 'saleDate',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '크리에이터',
|
|
||||||
field: 'nickname',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '제목',
|
|
||||||
field: 'title',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '구분',
|
|
||||||
field: 'orderType',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '판매금액(캔)',
|
|
||||||
field: 'orderPrice',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '판매수',
|
|
||||||
field: 'numberOfPeople',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '합계(캔)',
|
|
||||||
field: 'totalCan',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '원화',
|
|
||||||
field: 'totalKrw',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '수수료\n(6.6%)',
|
|
||||||
field: 'paymentFee',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '정산금액',
|
|
||||||
field: 'settlementAmount',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '원천세\n(3.3%)',
|
|
||||||
field: 'tax',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '입금액',
|
|
||||||
field: 'depositAmount',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '등록일',
|
|
||||||
field: 'registrationDate',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
headers: [
|
headers: [
|
||||||
{
|
{
|
||||||
text: '판매일',
|
text: '판매일',
|
||||||
|
|
Loading…
Reference in New Issue