交易:核销

This commit is contained in:
owen
2023-10-04 10:51:35 +08:00
parent 7c491ff62a
commit 58b6b1ba57
4 changed files with 115 additions and 24 deletions

View File

@ -389,3 +389,28 @@ export const DeliveryTypeEnum = {
name: '到店自提'
}
}
/**
* 交易订单 - 状态
*/
export const TradeOrderStatusEnum = {
UNPAID: {
status: 0,
name: '待支付'
},
UNDELIVERED: {
status: 10,
name: '待发货'
},
DELIVERED: {
status: 20,
name: '已发货'
},
COMPLETED: {
status: 30,
name: '已完成'
},
CANCELED: {
status: 40,
name: '已取消'
}
}