Files
2026-06-29 10:54:33 +08:00

38 lines
1.0 KiB
Vue
Raw Permalink 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="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>