|
|
|
@ -1,8 +1,10 @@ |
|
|
|
|
<template> |
|
|
|
|
<view class="refund"> |
|
|
|
|
<view class="refund-navbar"> |
|
|
|
|
<u-navbar title="退货退款详情" :border-bottom="false" :background="background"></u-navbar> |
|
|
|
|
<u-navbar title="退货退款详情" :border-bottom="false" back-icon-color='#000000' title-color="#000000" |
|
|
|
|
:background="background"></u-navbar> |
|
|
|
|
</view> |
|
|
|
|
<view> |
|
|
|
|
<view class="refund-hd"> |
|
|
|
|
<view class="l"> |
|
|
|
|
<view class="a">商家已同意退货/退款申请</view> |
|
|
|
@ -44,6 +46,21 @@ |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="unshipped" style="display: none;"> |
|
|
|
|
<view class="fright-hd"> |
|
|
|
|
<image class="img" src="/static/daichu.png" mode="aspectFit"></image> |
|
|
|
|
<view class="title">退款中</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="boer"> |
|
|
|
|
</view> |
|
|
|
|
<view class="wuliu"> |
|
|
|
|
<view class="wuliu-name"> |
|
|
|
|
退货物流<text>顺丰快递 SF234568990</text> |
|
|
|
|
</view> |
|
|
|
|
<u-icon name="arrow-right" color="#B7B7B7" size="30"></u-icon> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
@ -86,8 +103,8 @@ |
|
|
|
|
let app = this |
|
|
|
|
refundApi.detail(orderRefundId) |
|
|
|
|
.then(result => { |
|
|
|
|
app.refundDetails = result.data.detail |
|
|
|
|
console.log(app.refundDetails) |
|
|
|
|
app.refundDetails = result.data.detail; |
|
|
|
|
console.log(result.data.detail) |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
@ -95,6 +112,68 @@ |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|
.unshipped { |
|
|
|
|
overflow: hidden; |
|
|
|
|
background: linear-gradient(180deg, #FFE0E0 0%, #FFFFFF 70%); |
|
|
|
|
|
|
|
|
|
.boer { |
|
|
|
|
height: 12rpx; |
|
|
|
|
width: 100%; |
|
|
|
|
background: #F7F8FA; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.wuliu { |
|
|
|
|
height: 118rpx; |
|
|
|
|
background: #FFFFFF; |
|
|
|
|
margin-top: 12rpx; |
|
|
|
|
margin: 0 45rpx; |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
align-items: center; |
|
|
|
|
|
|
|
|
|
.wuliu-name { |
|
|
|
|
font-family: PingFang SC, PingFang SC; |
|
|
|
|
font-weight: 400; |
|
|
|
|
font-size: 28rpx; |
|
|
|
|
color: #292929; |
|
|
|
|
text-align: left; |
|
|
|
|
font-style: normal; |
|
|
|
|
text-transform: none; |
|
|
|
|
|
|
|
|
|
text { |
|
|
|
|
color: #484848; |
|
|
|
|
margin-left: 50rpx; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.fright-hd { |
|
|
|
|
padding: 50rpx 0 70rpx 0; |
|
|
|
|
box-sizing: border-box; |
|
|
|
|
margin-top: 12rpx; |
|
|
|
|
border-radius: 0px 0px 0px 0px; |
|
|
|
|
height: 310rpx; |
|
|
|
|
|
|
|
|
|
.img { |
|
|
|
|
display: block; |
|
|
|
|
width: 131rpx; |
|
|
|
|
height: 131rpx; |
|
|
|
|
margin: auto; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.title { |
|
|
|
|
font-family: PingFang SC, PingFang SC; |
|
|
|
|
font-weight: 500; |
|
|
|
|
font-size: 36rpx; |
|
|
|
|
color: #262626; |
|
|
|
|
text-align: left; |
|
|
|
|
font-style: normal; |
|
|
|
|
text-transform: none; |
|
|
|
|
text-align: center; |
|
|
|
|
margin-top: 15rpx; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.refund { |
|
|
|
|
width: 100%; |
|
|
|
|
overflow: hidden; |
|
|
|
|