|
|
@ -18,7 +18,7 @@ |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<!-- <view class="fright-bd"> |
|
|
|
<!-- <view class="fright-bd"> |
|
|
|
<image :src="$picUrl+'/static/home/phone.jpg'" class="icon"></image> |
|
|
|
<image :src="$picUrl+'/static/home/phone.jpg'" class="icon"></image> |
|
|
|
<view class="info"> |
|
|
|
<view class="info"> |
|
|
|
<view class="a">我要退货退款我要退货退款我要退货退款我要退货退款我要退货退款</view> |
|
|
|
<view class="a">我要退货退款我要退货退款我要退货退款我要退货退款我要退货退款</view> |
|
|
@ -45,15 +45,15 @@ |
|
|
|
onLoad(op) { |
|
|
|
onLoad(op) { |
|
|
|
console.log(op) |
|
|
|
console.log(op) |
|
|
|
this.orderId = op.orderId; |
|
|
|
this.orderId = op.orderId; |
|
|
|
this.order = op.order ? JSON.parse(op.order) : '' |
|
|
|
this.order = op.order ? JSON.parse(decodeURIComponent(op.order)) : '' |
|
|
|
this.deliveryStatus = op.deliveryStatus; |
|
|
|
this.deliveryStatus = op.deliveryStatus; |
|
|
|
this.receiptStatus = op.receiptStatus |
|
|
|
this.receiptStatus = op.receiptStatus |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
openPage() { |
|
|
|
openPage() { |
|
|
|
uni.navigateTo({ |
|
|
|
uni.navigateTo({ |
|
|
|
url: '/pages/order/refund/refund?orderId=' + this.orderId + '&order=' + JSON.stringify(this |
|
|
|
url: '/pages/order/refund/refund?orderId=' + this.orderId + '&order=' + encodeURIComponent(JSON.stringify(this |
|
|
|
.order) + |
|
|
|
.order)) + |
|
|
|
"&deliveryStatus=" + this.deliveryStatus + '&receiptStatus=' + this.deliveryStatus |
|
|
|
"&deliveryStatus=" + this.deliveryStatus + '&receiptStatus=' + this.deliveryStatus |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, |
|
|
|
}, |
|
|
|