|
@@ -40,7 +40,7 @@
|
|
|
<!-- 用户提交 -->
|
|
<!-- 用户提交 -->
|
|
|
<view class="" v-if="item.refundType == 0">
|
|
<view class="" v-if="item.refundType == 0">
|
|
|
<view class="information">
|
|
<view class="information">
|
|
|
- 退货金额:¥ {{item.refundPrice}}
|
|
|
|
|
|
|
+ 退款金额:¥ {{item.refundPrice}}
|
|
|
</view>
|
|
</view>
|
|
|
<view class="information">
|
|
<view class="information">
|
|
|
联系方式:{{item.phone}}
|
|
联系方式:{{item.phone}}
|
|
@@ -112,6 +112,7 @@
|
|
|
return {
|
|
return {
|
|
|
list: [],
|
|
list: [],
|
|
|
orderNo: '',
|
|
orderNo: '',
|
|
|
|
|
+ reOrderId:'',
|
|
|
reasonList: [{
|
|
reasonList: [{
|
|
|
name: '商品已使用',
|
|
name: '商品已使用',
|
|
|
check: false,
|
|
check: false,
|
|
@@ -143,8 +144,8 @@
|
|
|
}
|
|
}
|
|
|
this.$http.get("/app/order/locaOrder/afterSaleDetails?orderNo=" + this.orderNo).then(res => {
|
|
this.$http.get("/app/order/locaOrder/afterSaleDetails?orderNo=" + this.orderNo).then(res => {
|
|
|
if (res.data.code == 200) {
|
|
if (res.data.code == 200) {
|
|
|
- console.log(res)
|
|
|
|
|
this.list = res.data.result
|
|
this.list = res.data.result
|
|
|
|
|
+ console.log(this.list)
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
},
|
|
},
|
|
@@ -204,7 +205,7 @@
|
|
|
// 同意退款
|
|
// 同意退款
|
|
|
agree(item){
|
|
agree(item){
|
|
|
let data = {
|
|
let data = {
|
|
|
- reOrderId:this.orderNo
|
|
|
|
|
|
|
+ reOrderId:this.reOrderId
|
|
|
}
|
|
}
|
|
|
this.$http.post("/app/order/locaOrder/agreeRefund",data).then(res => {
|
|
this.$http.post("/app/order/locaOrder/agreeRefund",data).then(res => {
|
|
|
if (res.statusCode == 200) {
|
|
if (res.statusCode == 200) {
|
|
@@ -224,6 +225,7 @@
|
|
|
},
|
|
},
|
|
|
onLoad(options) {
|
|
onLoad(options) {
|
|
|
this.orderNo = options.orderId
|
|
this.orderNo = options.orderId
|
|
|
|
|
+ this.reOrderId = options.orderId
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|