Authored by htoooth

fix

@@ -735,12 +735,12 @@ const _getOrderDetail = co(function * (uid, orderId) { @@ -735,12 +735,12 @@ const _getOrderDetail = co(function * (uid, orderId) {
735 if (_.get(orderDetail, 'is_offlineshops') === 'Y') { 735 if (_.get(orderDetail, 'is_offlineshops') === 'Y') {
736 if (_.get(orderDetail, 'is_delivery_offline') === 'Y') { 736 if (_.get(orderDetail, 'is_delivery_offline') === 'Y') {
737 detail.orderInfo.offlineBySelf = true; 737 detail.orderInfo.offlineBySelf = true;
738 - detail.offlineBySelf = true; 738 + detail.offlineBySelf = true; // 进度条的处理
739 } else { 739 } else {
740 detail.orderInfo.offlineByExpress = true; 740 detail.orderInfo.offlineByExpress = true;
741 } 741 }
742 742
743 - detail.offlineStore = _.get(orderDetail, 'offline_store', ''); 743 + detail.orderInfo.offlineStore = _.get(orderDetail, 'offline_store', '');
744 } else { 744 } else {
745 detail.orderInfo.normal = true; 745 detail.orderInfo.normal = true;
746 } 746 }