mirror of
https://github.com/Nezumi-2711/foodify-frontend.git
synced 2026-09-22 13:38:44 +00:00
update user detail UI
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user