MrShi
21 小时以前 47d56a8b0f22fb15a46b69dfd46fac23560ad2cd
admin/src/components/business/OperaGoodsOrderDetail.vue
@@ -86,6 +86,22 @@
        </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>
@@ -229,6 +245,9 @@
    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 () {