...
|
...
|
@@ -32,7 +32,7 @@ |
|
|
<div class="goods-price">
|
|
|
<p>¥{{product.goodsPrice}}</p>
|
|
|
<p>×{{product.buyNumber}}</p>
|
|
|
<p><span class="goods-status">{{product.goodsStatus}}</span></p>
|
|
|
<p v-if="product.goodsStatus"><span class="goods-status">{{product.goodsStatus}}</span></p>
|
|
|
</div>
|
|
|
</a>
|
|
|
</li>
|
...
|
...
|
@@ -125,20 +125,20 @@ |
|
|
this.show = true;
|
|
|
this.$set('order', result.data);
|
|
|
this.genderSel = genderSelect([{
|
|
|
key: this.order.isSupportRefund,
|
|
|
val: this.order.isSupportRefund === 'Y' ? '申请退货' : '申请退货(已过期限)',
|
|
|
url: '/me/return/refund?orderCode=' + this.order.orderCode,
|
|
|
disabled: this.order.isSupportRefund !== 'Y'
|
|
|
}, {
|
|
|
key: this.order.isSupportExchange,
|
|
|
val: this.order.isSupportExchange === 'Y' ? '申请换货' : '申请换货(已过期限)',
|
|
|
url: '/me/return/exchange?orderCode=' + this.order.orderCode,
|
|
|
disabled: this.order.isSupportExchange !== 'Y'
|
|
|
}, {
|
|
|
key: 'onlineService',
|
|
|
val: '在线客服',
|
|
|
url: '/me/service'
|
|
|
}
|
|
|
key: this.order.isSupportRefund,
|
|
|
val: this.order.isSupportRefund === 'Y' ? '申请退货' : '申请退货(已过期限)',
|
|
|
url: '/me/return/refund?orderCode=' + this.order.orderCode,
|
|
|
disabled: this.order.isSupportRefund !== 'Y'
|
|
|
}, {
|
|
|
key: this.order.isSupportExchange,
|
|
|
val: this.order.isSupportExchange === 'Y' ? '申请换货' : '申请换货(已过期限)',
|
|
|
url: '/me/return/exchange?orderCode=' + this.order.orderCode,
|
|
|
disabled: this.order.isSupportExchange !== 'Y'
|
|
|
}, {
|
|
|
key: 'onlineService',
|
|
|
val: '在线客服',
|
|
|
url: '/me/service'
|
|
|
}
|
|
|
]);
|
|
|
if (Number(this.order.status) === 0) {
|
|
|
this.getCancelReason();
|
...
|
...
|
@@ -153,7 +153,7 @@ |
|
|
});
|
|
|
},
|
|
|
reasonChange() {
|
|
|
if (this.cancelbusy) {
|
|
|
if (this.cancelbusy) {
|
|
|
return false;
|
|
|
}
|
|
|
|
...
|
...
|
|