|
|
@ -41,7 +41,7 @@ |
|
|
|
|
|
|
|
|
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="invoice-money"> |
|
|
|
<view class="invoice-money" v-if="type==1||type==2"> |
|
|
|
<view class="a">申请金额</view> |
|
|
|
<view class="a">申请金额</view> |
|
|
|
<view class="b"> |
|
|
|
<view class="b"> |
|
|
|
<view class="l">¥ |
|
|
|
<view class="l">¥ |
|
|
@ -140,6 +140,7 @@ |
|
|
|
action: '', |
|
|
|
action: '', |
|
|
|
header: '', |
|
|
|
header: '', |
|
|
|
type: 1, |
|
|
|
type: 1, |
|
|
|
|
|
|
|
title:'申请退款', |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
onReady() { |
|
|
|
onReady() { |
|
|
@ -151,12 +152,23 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
onLoad(op) { |
|
|
|
onLoad(op) { |
|
|
|
|
|
|
|
console.log(op) |
|
|
|
this.deliveryStatus = op.deliveryStatus; |
|
|
|
this.deliveryStatus = op.deliveryStatus; |
|
|
|
this.type = op.type; |
|
|
|
this.type = op.type; |
|
|
|
this.receiptStatus = op.receiptStatus; |
|
|
|
this.receiptStatus = op.receiptStatus; |
|
|
|
this.orderId = op.orderId |
|
|
|
this.orderId = op.orderId |
|
|
|
this.order = op.order ? JSON.parse(op.order) : ''; |
|
|
|
this.order = op.order ? JSON.parse(op.order) : ''; |
|
|
|
this.value = this.order.is_user_grade ? this.order.grade_goods_price : this.order.goods_price; |
|
|
|
this.value = this.order.is_user_grade ? this.order.grade_goods_price : this.order.goods_price; |
|
|
|
|
|
|
|
this.title = op.type==1?"申请退货退款":(op.type==2?"申请退款":"申请换货"); |
|
|
|
|
|
|
|
if(op.type==3){ |
|
|
|
|
|
|
|
this.array=['已收到货', '未收到货']; |
|
|
|
|
|
|
|
this.array1=[ "外观、型号、参数与描述不符", '货物与描述不符', '商品有划痕或破损', '配件、部件、屏幕问题', '质量问题', '收到商品少件(含少配件)', |
|
|
|
|
|
|
|
'商品破损或污渍', '商家发错货' |
|
|
|
|
|
|
|
]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
uni.setNavigationBarTitle({ |
|
|
|
|
|
|
|
title: this.title |
|
|
|
|
|
|
|
}) |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
//接受上传返回的数据 |
|
|
|
//接受上传返回的数据 |
|
|
|