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

38 lines
1014 B
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>