2025-01-23 19:34:39 +08:00

72 lines
2.2 KiB
Vue
Raw 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="main">
<view class="content">
<view class="title">尊敬的会员</view>
<view class="contentText">
因春节期间暂停发货服务为确保您在本平台良好的购物体验请您阅知如下购物须知</view
>
<view class="title textIndent">发货服务暂停时间</view>
<view class="contentText"
>期间平台商城所有商品均可正常下单2025年2月5日起按照下单顺序陆续发货</view
>
<view class="title textIndent">如遇问题请垂询以下联系方式</view>
<view class="contentText">客服顾顾18788508349</view>
<view class="contentText">客服晶晶13508825566</view>
<view class="contentText">客服值班时间上午9:00下午18:00</view>
<view class="title textIndent">会员下单视为接受购物须知</view>
<view class="contentText"
>在2025年春节即将来临之际云南交投集团经营开发有限公司彩云驿商业管理分公司全体员工提前恭祝您及家人新春愉快阖家欢乐</view
>
<view class="contentText"
>衷心感谢您对本平台的鼎力支持我们将为您提供始终如一的优质服务</view
>
</view>
</view>
</template>
<script>
export default {
data() {
return {};
},
};
</script>
<style lang="less" scoped>
.main {
width: 100vw;
height: 100vh;
background-image: url(https://eshangtech.com/minTestImg/noticeBg.png);
background-repeat: no-repeat;
background-size: 100% 100%;
.content {
width: 100%;
box-sizing: border-box;
padding: 380rpx 136rpx 0;
.title {
font-family: PingFangSC, PingFang SC;
font-weight: 600;
font-size: 28rpx;
color: #da291a;
line-height: 40rpx;
text-align: left;
font-style: normal;
}
.contentText {
font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size: 28rpx;
color: #262626;
line-height: 40rpx;
text-align: left;
font-style: normal;
text-indent: 56rpx;
}
.textIndent {
text-indent: 56rpx;
}
}
}
</style>