jiangchengfeiyi-xiaochengxu/pages/order/component/expressageTips.vue
2025-04-05 16:12:09 +08:00

81 lines
2.2 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>