|
|
|
@ -126,18 +126,18 @@ |
|
|
|
|
<view class="goodsNum"> |
|
|
|
|
x{{ goods.total_num }} |
|
|
|
|
</view> |
|
|
|
|
<view class="up2" style="margin-top: 20rpx;" @tap.stop="onRefund(goods.order_goods_id,goods,order)" |
|
|
|
|
<!-- <view class="up2" style="margin-top: 20rpx;" @tap.stop="onRefund(goods.order_goods_id,goods,order)" |
|
|
|
|
v-if="order.pay_status == PayStatusEnum.SUCCESS.value && order.delivery_status == DeliveryStatusEnum.NOT_DELIVERED.value"> |
|
|
|
|
退款 |
|
|
|
|
</view> |
|
|
|
|
</view> --> |
|
|
|
|
<view class="up2" style="margin-top: 20rpx;" @tap.stop="onRefund(goods.order_goods_id,goods,order)" |
|
|
|
|
v-if="order.pay_status == PayStatusEnum.SUCCESS.value && order.receipt_status == ReceiptStatusEnum.NOT_RECEIVED.value && order.delivery_status == DeliveryStatusEnum.DELIVERED.value"> |
|
|
|
|
退款 |
|
|
|
|
v-if="order.isAllowRefund && order.delivery_status == DeliveryStatusEnum.DELIVERED.value"> |
|
|
|
|
售后 |
|
|
|
|
</view> |
|
|
|
|
<view class="up2" style="margin-top: 20rpx;" @tap.stop="onRefund(goods.order_goods_id,goods,order)" |
|
|
|
|
<!-- <view class="up2" style="margin-top: 20rpx;" @tap.stop="onRefund(goods.order_goods_id,goods,order)" |
|
|
|
|
v-if="order.pay_status == PayStatusEnum.SUCCESS.value && order.receipt_status == ReceiptStatusEnum.RECEIVED.value && order.delivery_status == DeliveryStatusEnum.DELIVERED.value"> |
|
|
|
|
换货 |
|
|
|
|
</view> |
|
|
|
|
</view> --> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="fd"> |
|
|
|
@ -558,14 +558,14 @@ |
|
|
|
|
|
|
|
|
|
// 跳转到门店详情页 |
|
|
|
|
handleTargetExtract(shopId) { |
|
|
|
|
this.$navTo('/pages/shop/detail', { |
|
|
|
|
this.$navTo('pages/shop/detail', { |
|
|
|
|
shopId |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 跳转到物流跟踪页面 |
|
|
|
|
handleTargetExpress() { |
|
|
|
|
this.$navTo('/pages/order/express/index', { |
|
|
|
|
this.$navTo('pages/order/express/index', { |
|
|
|
|
orderId: this.orderId |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
@ -674,14 +674,14 @@ |
|
|
|
|
}, |
|
|
|
|
// 点击去支付 |
|
|
|
|
onPay(orderId) { |
|
|
|
|
this.$navTo('/pages/checkout/cashier/index', { |
|
|
|
|
this.$navTo('pages/checkout/cashier/index', { |
|
|
|
|
orderId |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 跳转到订单评价页 |
|
|
|
|
handleTargetComment(orderId) { |
|
|
|
|
this.$navTo('/pages/order/comment/index', { |
|
|
|
|
this.$navTo('pages/order/comment/index', { |
|
|
|
|
orderId |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|