<template>
|
<view class="privacy-container">
|
<view class="header">
|
<view class="back-btn" @click="goBack">
|
<uni-icons type="arrowleft" size="20"></uni-icons>
|
</view>
|
<view class="title">隐私政策</view>
|
</view>
|
|
<scroll-view class="content" scroll-y="true">
|
<view class="privacy-content">
|
<view class="main-title">广东民航医疗快线调度系统小程序隐私保护指引</view>
|
<view class="update-time">更新日期:2025-10-26</view>
|
|
<view class="intro-text">
|
本指引是广东民航医疗快线调度系统小程序开发者 <text class="bold">广东民航医疗快线有限公司</text>(以下简称"开发者")为处理你的个人信息而制定。
|
</view>
|
|
<view class="section">
|
<text class="section-title">开发者处理的信息</text>
|
<text class="section-text">
|
根据法律规定,开发者仅处理实现小程序功能所必要的信息。
|
</text>
|
<text class="section-text highlight">
|
开发者将在获取你的明示同意后,收集你的位置信息,用途是【获取当前司机所在位置,以判断任务单到哪里了】
|
</text>
|
</view>
|
|
<view class="section">
|
<text class="section-title">你的权益</text>
|
<text class="section-text">
|
关于你的个人信息,你可以通过以下方式与开发者联系,行使查阅、复制、更正、删除等法定权利。
|
</text>
|
<text class="section-text">
|
若你在小程序中注册了账号,你可以通过以下方式与开发者联系,申请注销你在小程序中使用的账号。在受理你的申请后,开发者承诺在十五个工作日内完成核查和处理,并按照法律法规要求处理你的相关信息。
|
</text>
|
<text class="contact-info">
|
电话:13602220409
|
</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 highlight">
|
如开发者使用你的信息超出本指引目的或合理范围,开发者必须在变更使用目的或范围前,再次以手机短信方式告知并征得你的明示同意。
|
</text>
|
</view>
|
|
<view class="section">
|
<text class="section-title">信息对外提供</text>
|
<text class="section-text">
|
开发者承诺,不会主动共享或转让你的信息至任何第三方,如存在确需共享或转让时,开发者应当直接征得或确认第三方征得你的单独同意。
|
</text>
|
<text class="section-text">
|
开发者承诺,不会对外公开披露你的信息,如必须公开披露时,开发者应当向你告知公开披露的目的、披露信息的类型及可能涉及的信息,并征得你的单独同意。
|
</text>
|
</view>
|
|
<view class="section">
|
<text class="section-title">投诉与联系</text>
|
<text class="section-text">
|
你认为开发者未遵守上述约定,或有其他的投诉建议、或未成年人个人信息保护相关问题,可通过以下方式与开发者联系;或者向微信进行投诉。
|
</text>
|
<text class="contact-info">
|
电话:13602220409
|
</text>
|
</view>
|
|
<view class="footer">
|
<text class="footer-text">更新日期:2025-10-26</text>
|
</view>
|
</view>
|
</scroll-view>
|
</view>
|
</template>
|
|
<script>
|
export default {
|
data() {
|
return {}
|
},
|
methods: {
|
goBack() {
|
uni.navigateBack()
|
}
|
}
|
}
|
</script>
|
|
<style lang="scss">
|
.privacy-container {
|
height: 100vh;
|
display: flex;
|
flex-direction: column;
|
background-color: #f5f5f5;
|
|
.header {
|
display: flex;
|
align-items: center;
|
padding: 20rpx;
|
background-color: white;
|
border-bottom: 1rpx solid #f0f0f0;
|
|
.back-btn {
|
width: 60rpx;
|
height: 60rpx;
|
border-radius: 50%;
|
background-color: #f0f0f0;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
margin-right: 20rpx;
|
}
|
|
.title {
|
font-size: 36rpx;
|
font-weight: bold;
|
color: #333;
|
}
|
}
|
|
.content {
|
flex: 1;
|
padding: 30rpx;
|
}
|
|
.privacy-content {
|
background-color: white;
|
border-radius: 15rpx;
|
padding: 40rpx 30rpx;
|
|
.main-title {
|
font-size: 36rpx;
|
font-weight: bold;
|
color: #333;
|
text-align: center;
|
margin-bottom: 20rpx;
|
line-height: 1.5;
|
}
|
|
.update-time {
|
font-size: 24rpx;
|
color: #999;
|
text-align: center;
|
margin-bottom: 30rpx;
|
}
|
|
.intro-text {
|
font-size: 28rpx;
|
color: #666;
|
line-height: 1.8;
|
margin-bottom: 30rpx;
|
text-align: justify;
|
|
.bold {
|
font-weight: bold;
|
color: #333;
|
}
|
}
|
|
.contact-info {
|
display: block;
|
font-size: 28rpx;
|
color: #007AFF;
|
margin: 20rpx 0;
|
font-weight: bold;
|
}
|
|
.section {
|
margin-top: 40rpx;
|
|
&:first-child {
|
margin-top: 30rpx;
|
}
|
|
.section-title {
|
display: block;
|
font-size: 32rpx;
|
font-weight: bold;
|
color: #333;
|
margin-bottom: 20rpx;
|
line-height: 1.5;
|
}
|
|
.section-text {
|
display: block;
|
font-size: 28rpx;
|
color: #666;
|
line-height: 1.8;
|
margin-bottom: 15rpx;
|
text-align: justify;
|
|
&.highlight {
|
background-color: #fff8e6;
|
padding: 20rpx;
|
border-left: 4rpx solid #ff9500;
|
border-radius: 8rpx;
|
margin: 20rpx 0;
|
font-weight: bold;
|
color: #333;
|
}
|
}
|
}
|
|
.footer {
|
margin-top: 60rpx;
|
padding-top: 40rpx;
|
border-top: 1rpx solid #f0f0f0;
|
text-align: center;
|
|
.footer-text {
|
font-size: 28rpx;
|
color: #007AFF;
|
font-weight: bold;
|
}
|
}
|
}
|
}
|
</style>
|