|
|
|
@ -2,16 +2,20 @@
|
|
|
|
|
* @Author: ch
|
|
|
|
|
* @Date: 2022-04-14 13:44:30
|
|
|
|
|
* @LastEditors: ch
|
|
|
|
|
* @LastEditTime: 2022-04-15 11:08:54
|
|
|
|
|
* @LastEditTime: 2022-04-18 18:08:29
|
|
|
|
|
* @Description: file content
|
|
|
|
|
-->
|
|
|
|
|
<template>
|
|
|
|
|
<view>
|
|
|
|
|
<UiWhiteBox>
|
|
|
|
|
<view class="title">商家已同意退货申请,请尽早退货。</view>
|
|
|
|
|
<u-cell class="address" :title="data.refundLogistics.recipientAddress" :label="`收货人:${data.refundLogistics.recipientName} ${data.refundLogistics.recipientPhone}`"
|
|
|
|
|
:border="false">
|
|
|
|
|
<u-cell class="address" :border="false">
|
|
|
|
|
<view slot="title" class="address--title">{{data.refundLogistics.recipientAddress}}</view>
|
|
|
|
|
<image class="address--icon" slot="icon" src="@/static/order/dw.png" />
|
|
|
|
|
<view slot="label" class="address--label">
|
|
|
|
|
<text>收货人:{{data.refundLogistics.recipientName}}</text>
|
|
|
|
|
<text>{{data.refundLogistics.recipientPhone}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
</u-cell>
|
|
|
|
|
</UiWhiteBox>
|
|
|
|
|
<UiWhiteBox>
|
|
|
|
@ -164,10 +168,33 @@ export default {
|
|
|
|
|
.box{
|
|
|
|
|
padding: 0 30rpx;
|
|
|
|
|
}
|
|
|
|
|
.address--icon{
|
|
|
|
|
width: 40rpx;
|
|
|
|
|
height: 48rpx;
|
|
|
|
|
margin-right: 10rpx;
|
|
|
|
|
.address{
|
|
|
|
|
/deep/.u-cell__body__content{
|
|
|
|
|
padding: 10rpx 0;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
&--title{
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
width: 500rpx;
|
|
|
|
|
&__grey{
|
|
|
|
|
color: $color-grey4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&--icon{
|
|
|
|
|
width: 28rpx;
|
|
|
|
|
height: 34rpx;
|
|
|
|
|
margin-right: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
&--label{
|
|
|
|
|
margin-top: 26rpx;
|
|
|
|
|
text{
|
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
|
color: $color-grey4;
|
|
|
|
|
margin-right: 40rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.title{
|
|
|
|
|
height: 98rpx;
|
|
|
|
|