184 lines
5.1 KiB
Vue
184 lines
5.1 KiB
Vue
<template>
|
||
<view class="privacy-page">
|
||
<view class="content">
|
||
<view class="title">隐私政策</view>
|
||
|
||
<view class="section">
|
||
<text class="section-title">引言</text>
|
||
<text class="section-text">
|
||
游戏服务交易平台(以下简称"我们")非常重视用户的隐私保护。
|
||
本隐私政策说明了我们如何收集、使用、存储和保护您的个人信息。
|
||
</text>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<text class="section-title">一、我们收集的信息</text>
|
||
<text class="section-text">
|
||
1. 账号信息:手机号码、微信昵称、头像等;
|
||
</text>
|
||
<text class="section-text">
|
||
2. 订单信息:服务内容、交易金额、订单状态等;
|
||
</text>
|
||
<text class="section-text">
|
||
3. 设备信息:设备型号、操作系统、IP地址等;
|
||
</text>
|
||
<text class="section-text">
|
||
4. 使用信息:浏览记录、搜索记录、操作日志等。
|
||
</text>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<text class="section-title">二、信息的使用</text>
|
||
<text class="section-text">
|
||
1. 提供和改进服务;
|
||
</text>
|
||
<text class="section-text">
|
||
2. 处理订单和交易;
|
||
</text>
|
||
<text class="section-text">
|
||
3. 发送服务通知和营销信息;
|
||
</text>
|
||
<text class="section-text">
|
||
4. 保障平台安全和防范欺诈;
|
||
</text>
|
||
<text class="section-text">
|
||
5. 遵守法律法规要求。
|
||
</text>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<text class="section-title">三、信息的共享</text>
|
||
<text class="section-text">
|
||
我们不会向第三方出售您的个人信息。在以下情况下,我们可能会共享您的信息:
|
||
</text>
|
||
<text class="section-text">
|
||
1. 经您明确同意;
|
||
</text>
|
||
<text class="section-text">
|
||
2. 为完成交易所必需(如与代练共享订单信息);
|
||
</text>
|
||
<text class="section-text">
|
||
3. 法律法规要求或政府部门要求;
|
||
</text>
|
||
<text class="section-text">
|
||
4. 保护平台、用户或公众的合法权益。
|
||
</text>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<text class="section-title">四、信息的存储</text>
|
||
<text class="section-text">
|
||
1. 您的信息将存储在中国境内的服务器;
|
||
</text>
|
||
<text class="section-text">
|
||
2. 我们采用加密技术保护您的信息安全;
|
||
</text>
|
||
<text class="section-text">
|
||
3. 信息保存期限符合法律法规要求。
|
||
</text>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<text class="section-title">五、您的权利</text>
|
||
<text class="section-text">
|
||
1. 访问和更新您的个人信息;
|
||
</text>
|
||
<text class="section-text">
|
||
2. 删除您的个人信息;
|
||
</text>
|
||
<text class="section-text">
|
||
3. 撤回授权同意;
|
||
</text>
|
||
<text class="section-text">
|
||
4. 注销账号。
|
||
</text>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<text class="section-title">六、未成年人保护</text>
|
||
<text class="section-text">
|
||
我们非常重视未成年人的个人信息保护。
|
||
如果您是未成年人,请在监护人的陪同下阅读本政策,并在监护人同意后使用我们的服务。
|
||
</text>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<text class="section-title">七、政策更新</text>
|
||
<text class="section-text">
|
||
我们可能会不时更新本隐私政策。
|
||
更新后的政策将在平台公布,请您定期查看。
|
||
</text>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<text class="section-title">八、联系我们</text>
|
||
<text class="section-text">
|
||
如果您对本隐私政策有任何疑问,请通过以下方式联系我们:
|
||
</text>
|
||
<text class="section-text">
|
||
邮箱:privacy@example.com
|
||
</text>
|
||
<text class="section-text">
|
||
电话:400-xxx-xxxx
|
||
</text>
|
||
</view>
|
||
|
||
<view class="footer">
|
||
<text class="update-time">最后更新时间:2024年1月1日</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
// 隐私政策页面
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.privacy-page {
|
||
min-height: 100vh;
|
||
background: #fff;
|
||
padding: 40rpx;
|
||
}
|
||
|
||
.title {
|
||
font-size: 40rpx;
|
||
font-weight: bold;
|
||
text-align: center;
|
||
margin-bottom: 40rpx;
|
||
color: #333;
|
||
}
|
||
|
||
.section {
|
||
margin-bottom: 40rpx;
|
||
}
|
||
|
||
.section-title {
|
||
display: block;
|
||
font-size: 32rpx;
|
||
font-weight: bold;
|
||
color: #333;
|
||
margin-bottom: 20rpx;
|
||
}
|
||
|
||
.section-text {
|
||
display: block;
|
||
font-size: 28rpx;
|
||
line-height: 1.8;
|
||
color: #666;
|
||
margin-bottom: 15rpx;
|
||
}
|
||
|
||
.footer {
|
||
margin-top: 60rpx;
|
||
padding-top: 40rpx;
|
||
border-top: 1rpx solid #eee;
|
||
text-align: center;
|
||
}
|
||
|
||
.update-time {
|
||
font-size: 24rpx;
|
||
color: #999;
|
||
}
|
||
</style>
|