You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.5 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<view class="container">
<HeaderCustom title="隐私政策" :showBack="true"></HeaderCustom>
<div class="contentBox">
<div class="part">
<div class="line">
本应用非常重视用户隐私政策并严格遵守相关的法律规定请您仔细阅读隐私政策后再继续使用
</div>
<div class="line">
如果您继续使用我们的服务表示您已经充分阅读和理解我们协议的全部内容
</div>
</div>
<div class="part">
<div class="line">本小程序尊重并保护所有使用服务用户的个人隐私权</div>
<div class="line">为了给您提供更准确更优质的服务本应用会按照本隐私权政策的规定使用和披露您的个人信息</div>
<div class="line">除本隐私权政策另有规定外在未征得您事先许可的情况下本应用不会将这些信息对外披露或向第三方提供</div>
<div class="line">本应用会不时更新本隐私权政策您在同意本应用服务使用协议之时即视为您已经同意本隐私权政策全部内容</div>
</div>
</div>
</view>
</template>
<script setup>
import {
ref
} from "vue";
import HeaderCustom from '/components/HeaderCustom/HeaderCustom.vue'
</script>
<style lang="scss" scoped>
.container {
font-size: 14px;
}
.contentBox {
padding: 20px;
color: #000;
font-weight: 400;
line-height: 22px;
.part {
margin-bottom: 20px;
}
}
</style>