|
|
|
@ -68,7 +68,7 @@ |
|
|
|
<view class="padding-lr bg-white" style="padding-top: 30rpx;"> |
|
|
|
<view class="cu-self menu"> |
|
|
|
<view class="text-gray lf-font-28"> |
|
|
|
由于产品的特殊性,在申请的过程中,供应商会向您收取部分费用。如有疑问可参与产品的<text class="text-orange">《{{checkArea}}》</text>或咨询客服 |
|
|
|
由于产品的特殊性,在申请的过程中,供应商会向您收取部分费用。如有疑问可参与产品的<text @tap="$routerGo('/pages/agreement/agreement?id='+checkAreaId)" class="text-orange">《{{checkArea}}》</text>或咨询客服 |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
@ -80,11 +80,14 @@ |
|
|
|
<view class="cu-self menu"> |
|
|
|
<view class="lf-font-32 text-black1">退款说明</view> |
|
|
|
</view> |
|
|
|
<view class="cu-self menu" style="margin-top: 20rpx;padding-bottom: 20rpx;border-bottom: 1px solid #F5F5F5;"> |
|
|
|
<view class="cu-self menu" style="margin-top: 20rpx;padding-bottom: 20rpx;border-bottom: 1px solid #F5F5F5;" v-if="images.length == 0"> |
|
|
|
<view class="text-gray lf-font-32">{{orderDetails.comment}}</view> |
|
|
|
</view> |
|
|
|
<view class="cu-self menu" style="margin-top: 20rpx;" v-else> |
|
|
|
<view class="text-gray lf-font-32">{{orderDetails.comment}}</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="cu-form-group"> |
|
|
|
<view class="cu-form-group solid-bottom" style="padding-bottom: 20rpx;" v-if="images.length != 0"> |
|
|
|
<view class="grid col-4 grid-square flex-sub"> |
|
|
|
<view style="width: 212rpx;height: 212rpx;border-radius: 10rpx;" class="bg-img" v-for="(item,index) of images" :key="index"> |
|
|
|
<image :src="item.path" @tap="showImg(item.path)" style="width: 216rpx;height: 216rpx;" mode="aspectFill"></image> |
|
|
|
@ -111,6 +114,7 @@ |
|
|
|
order_id:1, |
|
|
|
orderDetails: {}, |
|
|
|
checkArea: '', |
|
|
|
checkAreaId: 1, |
|
|
|
images: [] |
|
|
|
} |
|
|
|
}, |
|
|
|
@ -130,6 +134,7 @@ |
|
|
|
this.orderDetails = res.data.refund |
|
|
|
this.checkArea = res.data.agreement.title |
|
|
|
this.images = res.data.refund.images |
|
|
|
this.checkAreaId = res.data.agreement.article_id |
|
|
|
this.skeletonLoading = false |
|
|
|
} |
|
|
|
|
|
|
|
|