38 lines
1.0 KiB
Vue
38 lines
1.0 KiB
Vue
<template>
|
||
<view class="container">
|
||
<view class="card block">
|
||
<view class="t">服务协议(示例)</view>
|
||
<view class="p muted">本页面用于原型演示。正式商用请替换为合规服务条款全文。</view>
|
||
<view class="p muted">1. 用户可通过本小程序进行预约与购买,具体服务以门店实际确认为准。</view>
|
||
<view class="p muted">2. 预约改期与取消规则以订单页展示为准。</view>
|
||
<view class="p muted">3. 卡券核销后视为完成服务,相关售后按门店规则执行。</view>
|
||
<view class="p muted">4. 平台将尽力保障服务可用性,但不对不可抗力导致的中断负责。</view>
|
||
</view>
|
||
<AiFloat />
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import AiFloat from '@/components/AiFloat.vue'
|
||
|
||
export default {
|
||
components: { AiFloat }
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.block {
|
||
padding: 22rpx;
|
||
}
|
||
.t {
|
||
font-size: 36rpx;
|
||
font-weight: 950;
|
||
}
|
||
.p {
|
||
margin-top: 14rpx;
|
||
font-size: 28rpx;
|
||
line-height: 1.7;
|
||
}
|
||
</style>
|
||
|