81 lines
2.2 KiB
Vue
81 lines
2.2 KiB
Vue
<template>
|
||
<view class="flex-col page">
|
||
<text class="self-center text">购买须知</text>
|
||
<view class="flex-col self-stretch group">
|
||
<text class="font">
|
||
1.本店商品大部分地区均可享受包邮服务。但由于以下偏远地区(如新疆、西藏、内蒙古、甘肃、青海、宁夏、海南等)运费较高,故不参与包邮。
|
||
</text>
|
||
<text class="mt-14 font">
|
||
2.若您所在的收货地址属于上述偏远地区,请在下单前与客服沟通,我们将为您计算实际运费。您可以选择补差价发快递,或者选择到付。
|
||
</text>
|
||
<text class="mt-14 font">
|
||
3.如有疑问,请及时联系我们的客服,我们将竭诚为您解答。感谢您的理解与支持,祝您购物愉快!
|
||
</text>
|
||
</view>
|
||
<view @click="closeBookingTips" class="flex-col justify-start items-center self-stretch text-wrapper">
|
||
<text class="text_2">我知道了</text>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script setup>
|
||
import emitter from '../../../utils/emitter';
|
||
import { onLoad,onShow } from "@dcloudio/uni-app";
|
||
import { getFonts } from '../../../common/globalFont';
|
||
import { baseUrl } from '../../../api/request';
|
||
import { onMounted,ref } from 'vue';
|
||
|
||
|
||
const cookie = wx.getStorageSync('cookie')
|
||
|
||
onLoad(() => {
|
||
getFonts()
|
||
|
||
})
|
||
|
||
|
||
const closeBookingTips = () => {
|
||
emitter.emit('closeBookingTips')
|
||
}
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.page {
|
||
padding: 41.67rpx 62.5rpx;
|
||
background-color: #ffffff;
|
||
border-radius: 41.1rpx;
|
||
box-shadow: 0rpx 8.33rpx 8.33rpx #32323261;
|
||
width: 100%;
|
||
overflow-y: auto;
|
||
overflow-x: hidden;
|
||
height: 100%;
|
||
}
|
||
.text {
|
||
color: #323232;
|
||
font-size: 37.5rpx;
|
||
font-family: FangZhengFonts;
|
||
line-height: 34.42rpx;
|
||
}
|
||
.group {
|
||
margin-top: 33.33rpx;
|
||
}
|
||
.font {
|
||
font-size: 29.17rpx;
|
||
font-family: FangZhengFonts;
|
||
line-height: 35.42rpx;
|
||
color: #323232;
|
||
}
|
||
.text-wrapper {
|
||
margin: 50rpx 20.83rpx 0 4.17rpx;
|
||
padding: 25rpx 0;
|
||
background-color: #e79ea1;
|
||
border-radius: 83.33rpx;
|
||
}
|
||
.text_2 {
|
||
color: #ffffff;
|
||
font-size: 33.33rpx;
|
||
font-family: FangZhengFonts;
|
||
line-height: 32.17rpx;
|
||
}
|
||
@import url(../../../common/css/global.css);
|
||
</style> |