주문상태, 배송상태

This commit is contained in:
kimsanghoon1
2019-11-22 16:21:27 +09:00
parent 60e7a14aa3
commit af9190d76d
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@
<template v-slot:item.orderAction="{ item }">
<v-btn
:color="'yellow'"
v-if="!item.deliveryCancelled"
v-if="!(item.orderState == 'OrderCancelled') && !item.deliveryCancelled"
@click="orderCancelled(item)"
> 주문취소
</v-btn>

View File

@@ -47,7 +47,7 @@
<template v-slot:item.orderAction="{ item }">
<v-btn
:color="'yellow'"
v-if="!(item.deli == 'DeliveryCancelled') "
v-if="!(item.state == 'OrderCancelled') && !(item.deli == 'DeliveryCancelled') "
@click="orderCancelled(item)"
> 주문취소
</v-btn>