72 lines
2.2 KiB
Vue
72 lines
2.2 KiB
Vue
<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> |