You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
<template>
|
|
<view class="refundPrice">
|
|
<view class="refundPrice-hd">
|
|
<view class="a" style="color: #F55349;">退货运费</view>
|
|
<view class="p">平台秉承“谁过错,谁承担”的原则。如商品存在质量问题、发错货等情况,退货运费由商家承担。</view>
|
|
<view class="a">商家责任</view>
|
|
<view class="p">无需消费者承担退货运费。您需向商家发起退货退款/换货申请,商家同意申请后,寄件时请您先垫付运费。退货/换货完成后,审核通过将自动打款运费给您。</view>
|
|
<view class="a">非商家责任</view>
|
|
<view class="p">消费者承担退货运费。</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.refundPrice{
|
|
&-hd{
|
|
background: #FFFFFF;
|
|
padding: 20rpx 25rpx;
|
|
font-size: 26rpx;
|
|
color: #212121;
|
|
line-height: 50rpx;
|
|
margin-top: 20rpx;
|
|
box-sizing: border-box;
|
|
.a{
|
|
font-size: 36rpx;
|
|
color: #212121;
|
|
padding: 30rpx 0;
|
|
}
|
|
.p{
|
|
font-size: 26rpx;
|
|
color: #666;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|