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.
yanzong_qianduan/pages/news/user/refundPrice.vue

49 lines
1.1 KiB

10 months ago
<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>