|
|
|
@ -139,7 +139,10 @@ |
|
|
|
@error="imageError(goodsIndex)" mode="aspectFill"></image> |
|
|
|
</view> |
|
|
|
<view class="goods-info" @click="goDetail(goodsItem)"> |
|
|
|
<view class="goods-name">{{ goodsItem.sku_name }}</view> |
|
|
|
<view class="goods-name" style="display: flex;align-items: center;justify-content: space-between;"> |
|
|
|
{{ goodsItem.sku_name }} |
|
|
|
<text v-if="goodsItem.refund_type == 4">仅退货-{{goodsItem.refund_status_name}}</text> |
|
|
|
</view> |
|
|
|
<view class="sku" v-if="goodsItem.sku_spec_format"> |
|
|
|
<view class="goods-spec"> |
|
|
|
<block v-for="(x, i) in goodsItem.sku_spec_format" :key="i"> |
|
|
|
@ -711,6 +714,11 @@ |
|
|
|
//判断"orderPay"在不在_actionArr中 |
|
|
|
if (!_actionArr.includes('orderPay') && res.data.pay.pay_status == 0) { |
|
|
|
this.isOrderPayShow = true |
|
|
|
if (res.data.is_lock == 1){ |
|
|
|
this.isOrderPayShow = false |
|
|
|
}else if(res.data.order_status == -1){ |
|
|
|
this.isOrderPayShow = false |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -816,6 +824,12 @@ |
|
|
|
.order_id |
|
|
|
}); |
|
|
|
break; |
|
|
|
//仅退回 |
|
|
|
case 'memberSalesReturn': |
|
|
|
this.$util.redirectTo('/pages_tool/order/refund_type_select', { |
|
|
|
order_id: this.orderData.order_id |
|
|
|
}); |
|
|
|
break; |
|
|
|
//申请退款 |
|
|
|
case 'memberRefund': |
|
|
|
|
|
|
|
|