jiangchengfeiyi-xiaochengxu/pages/order/component/expressageTips.vue

81 lines
2.2 KiB
Vue
Raw Normal View History

2025-04-02 15:45:33 +00:00
<template>
<view class="flex-col page">
2025-04-05 08:12:09 +00:00
<text class="self-center text">购买须知</text>
2025-04-02 15:45:33 +00:00
<view class="flex-col self-stretch group">
2025-04-05 08:12:09 +00:00
<text class="font">
1.本店商品大部分地区均可享受包邮服务但由于以下偏远地区如新疆西藏内蒙古甘肃青海宁夏海南等运费较高故不参与包邮
</text>
<text class="mt-14 font">
2.若您所在的收货地址属于上述偏远地区请在下单前与客服沟通我们将为您计算实际运费您可以选择补差价发快递或者选择到付
</text>
<text class="mt-14 font">
3.如有疑问请及时联系我们的客服我们将竭诚为您解答感谢您的理解与支持祝您购物愉快
</text>
2025-04-02 15:45:33 +00:00
</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>