| | |
| | | </div> |
| | | <div class="info-item" > |
| | | <div class="info-item-a" >退款备注:<span>{{info.refundInfo ||''}}</span></div> |
| | | <div class="info-item-a" v-if="info.refundConfigInfo">退还: |
| | | <span> |
| | | {{(info.refundConfigInfo.returnUseCouponStatus == 1 && info.refundConfigInfo.returnUseIntegralStatus == 1) ? '退还客户优惠券,退还客户积分' : |
| | | (info.refundConfigInfo.returnUseCouponStatus == 1 && info.refundConfigInfo.returnUseIntegralStatus != 1) ? '退还客户优惠券' : |
| | | (info.refundConfigInfo.returnUseCouponStatus != 1 && info.refundConfigInfo.returnUseIntegralStatus == 1) ? '退还客户积分' : ''}} |
| | | </span> |
| | | </div> |
| | | <div class="info-item-a" v-if="info.refundConfigInfo"> |
| | | 扣除:<span> |
| | | {{info.refundConfigInfo.returnShopSettlementStatus == 1 ? '扣除经销商已结算金额' : ''}} |
| | | {{(info.refundConfigInfo.returnIntegralStatus == 1 || info.refundConfigInfo.returnShopIntegralStatus == 1) ? ',' : ''}} |
| | | {{info.refundConfigInfo.returnIntegralStatus == 1 ? '扣除已返还客户积分' : ''}} |
| | | {{(info.refundConfigInfo.returnShopSettlementStatus == 1 || info.refundConfigInfo.returnIntegralStatus == 1) ? ',' : ''}} |
| | | {{info.refundConfigInfo.returnShopIntegralStatus == 1 ? '扣除已返还经销商积分' : ''}} |
| | | </span> |
| | | </div> |
| | | </div> |
| | | <div class="info-item"></div> |
| | | </template> |
| | |
| | | loadInfo () { |
| | | this.api.detail(this.info.id).then(res => { |
| | | this.info = res || this.info |
| | | if (this.info.refundConfigInfo) { |
| | | this.info.refundConfigInfo = JSON.parse(this.info.refundConfigInfo) |
| | | } |
| | | }) |
| | | }, |
| | | showChangeRecord () { |