初始化

This commit is contained in:
leiking
2026-06-29 10:54:33 +08:00
parent 761cee968e
commit 4983006317
156 changed files with 25687 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
<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>