初始化

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>