주문상태, 배송상태

This commit is contained in:
kimsanghoon1
2019-11-22 15:59:01 +09:00
parent 3da2997b24
commit d016c5b297
2 changed files with 26 additions and 1 deletions

View File

@@ -36,6 +36,18 @@
</v-chip>
</template>
<template v-slot:item.orderStatus="{ item }">
<v-chip :color="'green'"
dark
v-if="item.orderState == 'OrderPlaced'"
> 주문 완료
</v-chip>
<v-chip :color="'red'"
dark
v-else
> 주문 취소
</v-chip>
</template>
<template v-slot:item.orderAction="{ item }">
<v-btn
:color="'yellow'"
v-if="!item.deliveryCancelled"
@@ -90,6 +102,7 @@
{text: '결제금액', value: 'payment', sortable: false, align: 'center'},
{text: '배송상태', value: 'action', sortable: false, align: 'center'},
{text: '주문상태', value: 'orderStatus', sortable: false, align: 'center'},
{text: '주문취소', value: 'orderAction', sortable: false, align: 'center'},
],
orderList: [],
surveyList: [],

View File

@@ -33,6 +33,18 @@
</v-chip>
</template>
<template v-slot:item.orderStatus="{ item }">
<v-chip v-if="item.state == 'OrderPlaced'"
color="green"
dark
> {{ item.state }}
</v-chip>
<v-chip v-else
color="red"
dark
> {{ item.state }}
</v-chip>
</template>
<template v-slot:item.orderAction="{ item }">
<v-btn
:color="'yellow'"
v-if="item.deli && !(item.deli == 'DeliveryCancelled') "
@@ -68,7 +80,7 @@
{text: '결제금액', value: 'price', sortable: false, align: 'center'},
{text: '배송상태', value: 'delivery', sortable: false, align: 'center'},
{text: '주문상태', value: 'orderStatus', sortable: false, align: 'center'},
// {text: '결제시각', value: 'timestamp', align: 'center'},
{text: '주문취소', value: 'orderAction', sortable: false, align: 'center'},
],
orderList: [],
surveyList: [],