72 lines
2.0 KiB
Vue
72 lines
2.0 KiB
Vue
|
<template>
|
|||
|
<view class="flex-col justify-start items-center page">
|
|||
|
<view class="flex-col section">
|
|||
|
<view class="flex-col self-stretch group">
|
|||
|
<text class="self-center font text">预约须知</text>
|
|||
|
<view class="mt-12 flex-col self-stretch">
|
|||
|
<text class="font_2">
|
|||
|
1.成功预约的顾客需按照预定时间前往店内挑选相应级别的服装。为确保衣物在体验过程中的完好无损,顾客需根据所选服装的级别补缴尾款以及相应的押金。拍摄结束后,店铺将依据衣物的实际状况评估是否扣除押金。
|
|||
|
</text>
|
|||
|
<text class="mt-16 font_2 text_2">
|
|||
|
2.其中部分物品商家可提供,属于增值服务(如一次性隐形眼镜、
|
|||
|
一次性粉扑等属于服务费以外的赠送服务,买家可选择自带用品,不影响服务价格),需要买家自己准备的,客服需要提前告诉买家(如胸贴等贴身物品)
|
|||
|
</text>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="flex-col justify-start items-center self-center text-wrapper">
|
|||
|
<text class="font text_3">我知道了</text>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
</script>
|
|||
|
|
|||
|
<style lang="scss" scoped>
|
|||
|
.page {
|
|||
|
padding: 298.13rpx 0 708.75rpx;
|
|||
|
background-color: #f5f5dc;
|
|||
|
width: 100%;
|
|||
|
overflow-y: auto;
|
|||
|
overflow-x: hidden;
|
|||
|
height: 100%;
|
|||
|
}
|
|||
|
.section {
|
|||
|
padding: 0 15rpx 31.88rpx 37.5rpx;
|
|||
|
background-color: #fffef8;
|
|||
|
border-radius: 37.5rpx;
|
|||
|
width: 609.38rpx;
|
|||
|
}
|
|||
|
.group {
|
|||
|
padding: 37.5rpx 0 48.75rpx;
|
|||
|
}
|
|||
|
.font {
|
|||
|
font-size: 30rpx;
|
|||
|
font-family: Inter;
|
|||
|
line-height: 27.69rpx;
|
|||
|
}
|
|||
|
.text {
|
|||
|
color: #323232;
|
|||
|
}
|
|||
|
.font_2 {
|
|||
|
font-size: 26.25rpx;
|
|||
|
font-family: Inter;
|
|||
|
line-height: 31.88rpx;
|
|||
|
color: #323232;
|
|||
|
}
|
|||
|
.text_2 {
|
|||
|
margin-left: 3.75rpx;
|
|||
|
}
|
|||
|
.text-wrapper {
|
|||
|
padding: 22.5rpx 0;
|
|||
|
background-color: #fbb612;
|
|||
|
border-radius: 75rpx;
|
|||
|
width: 450rpx;
|
|||
|
}
|
|||
|
.text_3 {
|
|||
|
color: #ffffff;
|
|||
|
line-height: 27.71rpx;
|
|||
|
}
|
|||
|
@import url(../../../common/css/global.css);
|
|||
|
</style>
|