...
|
...
|
@@ -328,10 +328,9 @@ const orderDetailData = (uid, orderCode) => { |
|
|
}
|
|
|
|
|
|
/* 申请退款 */
|
|
|
if (orderDetail.isMultiPackage === 'N' &&
|
|
|
parseInt(orderDetail.paymentType, 10) === 1 &&
|
|
|
orderDetail.paymentStatus === 'Y' &&
|
|
|
4 <= parseInt(orderDetail.status, 10) <= 5) {
|
|
|
if (_.find(orderDetail.links, o => {
|
|
|
return o === 'refundApply';
|
|
|
})) {
|
|
|
Object.assign(orderDetail, {
|
|
|
refundApply: true
|
|
|
});
|
...
|
...
|
|