...
|
...
|
@@ -260,9 +260,15 @@ const orderDetailData = (uid, orderCode) => { |
|
|
}
|
|
|
|
|
|
// 判断是否可以修改地址
|
|
|
if (orderDetail.canUpdateDeliveryAddress === 'Y') {
|
|
|
if (orderDetail.canUpdateDeliveryAddress === 'Y' && orderDetail.isSupportChangeProvince === 'Y') {
|
|
|
orderDetail = _.assign(orderDetail, {
|
|
|
changeable: true
|
|
|
changeable: true,
|
|
|
addressModify: true
|
|
|
});
|
|
|
} else if (orderDetail.canUpdateDeliveryAddress === 'Y' && orderDetail.isSupportChangeProvince !== 'Y') {
|
|
|
orderDetail = _.assign(orderDetail, {
|
|
|
changeable: false,
|
|
|
addressModify: true
|
|
|
});
|
|
|
}
|
|
|
|
...
|
...
|
|