初始化
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user