trade:完善订单详情

This commit is contained in:
YunaiV
2023-10-02 10:34:37 +08:00
parent 588ce1c9ae
commit 4fddbccea1
7 changed files with 126 additions and 72 deletions

View File

@ -375,3 +375,17 @@ export const BrokerageWithdrawTypeEnum = {
name: '支付宝'
}
}
/**
* 配送方式枚举
*/
export const DeliveryTypeEnum = {
EXPRESS: {
type: 1,
name: '快递发货'
},
PICK_UP: {
type: 2,
name: '到店自提'
}
}