update user detail UI

This commit is contained in:
Nguyễn Đức Đạt
2023-04-26 19:09:09 +07:00
parent 1ffbc3e9a8
commit 939fd0ed3a
2 changed files with 7 additions and 1 deletions
@@ -239,7 +239,7 @@
'badge-warning': order.status === 'CONFIRMED',
'badge-info': order.status === 'SHIPPING',
'badge-success': order.status === 'COMPLETED',
'badge-primary': order.status === 'CANCELED'
'badge-primary': order.status === 'CANCELED' || order.status === 'REJECT_DELIVERY'
}">
{{
order.status === "AWAITING"
@@ -252,6 +252,8 @@
? "Giao thành công"
: order.status === "CANCELED"
? "Đã huỷ đơn"
: order.status === "REJECT_DELIVERY"
? "Không nhận hàng"
: ""
}}
</span>
@@ -1,3 +1,7 @@
.text-size {
font-size: 16px;
}
th, td {
text-align: center;
}