privacy.uvue 3.5 KB
Newer Older
1 2 3
<template>
  <view class="dialog-container">
    <view class="dialog-content">
4
      <view style="width: 100%;justify-content: center;align-items: center;background-color: #fff;">
M
mahaifeng 已提交
5 6
        <image src="../image/logo.png" style="margin-top: 25px;width: 60px;height: 60px;"></image>
      </view>
7 8
      <text style="text-align: center;padding-top: 20px;font-size: 20px;color: black;background-color: #fff;"> 个人信息保护指引</text>
      <scroll-view  style="flex: 1;align-content: center;padding-top: 10px;padding-left: 25px;padding-right: 25px;background-color: #fff;"
M
mahaifeng 已提交
9 10
        show-scrollbar="false">
        <rich-text style="font-size: 14px;color: red;" :nodes="htmlString" @itemclick="itemClick"></rich-text>
11
      </scroll-view>
M
mahaifeng 已提交
12 13 14
      <button class="button" style="background-color: #fff;" @click="reject" hover-class="button-hover1">不同意</button>
      <button class="button"  style="background-color: royalblue;" hover-class="button-hover2" open-type="agreePrivacyAuthorization"
        @click="agree">同意</button>
15 16 17 18 19 20 21 22 23 24
    </view>
  </view>
</template>
<script>
  import { openSchema } from '@/uni_modules/uts-openSchema'

  export default {
    data() {
      return {
        number: 0,
M
mahaifeng 已提交
25
        htmlString: '<span style="color:grey">欢迎使用Hello uni-app x,我们将通过<a href="https://hx.dcloud.net.cn/license" >《用户服务协议》</a></strong>及相关个人信息处理规则帮助你了解我们如何收集、处理个人信息。根据《常见类型移动互联网应用程序必要个人信息范围规定》。同意《基本功能数据处理规则》仅代表你同意使用浏览、搜索、下载等主要功能收集、处理相关必要个人信息及数据。此外,为了向你提供更多丰富、优质的服务,我们可能在你使用本产品的过程中提供电商购物、财经支付等扩展功能,如果你拒绝提供,你可能无法使用相应的扩展服务,但不影响你使用我们的基础服务。我们通过<a href="https://doc.dcloud.net.cn/markdown-share-docs/2e766f9cf1f8ca009c11875e447de5c8/">《隐私政策》</a></strong>帮助你全面了解我们的服务及收集、处理个人信息的详细情况。</span>'
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
      }
    },
    unmounted() {
      uni.offPrivacyAuthorizationChange(this.number)
    },
    onLoad() {
      this.number = uni.onPrivacyAuthorizationChange((callback) => {
        uni.showToast({
          title: 'isPrivacyAgree:' + !callback.needAuthorization
        })
      })
    },
    methods: {
      agree() {
        uni.closeDialogPage({
DCloud-WZF's avatar
DCloud-WZF 已提交
41
          dialogPage: this.$page
42 43 44 45 46
        })
      },
      reject() {
        uni.resetPrivacyAuthorization()
        uni.closeDialogPage({
DCloud-WZF's avatar
DCloud-WZF 已提交
47
          dialogPage: this.$page
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
        })
      },
      itemClick(e : RichTextItemClickEvent) {
        let ref = e.detail.href
        if (ref != null) {
          openSchema(ref)
        }
      },
    }
  }
</script>
<style>
  .dialog-container {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .dialog-content {
70
    height: 60%;
71
    width: 80%;
72
    /* background-color: #fff; */
M
mahaifeng 已提交
73
    border-radius: 12px;
74 75 76 77 78
  }

  .mt-10 {
    margin-top: 10px;
  }
79 80 81 82

  .button {
    border: 0px;
    border-radius: 0px;
83
    font-size: 15px;
M
mahaifeng 已提交
84 85
    color: lightgrey;
    text-align: center;
86
    line-height: 40px;
M
mahaifeng 已提交
87 88 89 90 91 92 93 94 95
  }

  .button-hover1 {
   color:  black;
    background-color: #fff;
  }
  .button-hover2 {
   color: black;
    background-color: royalblue;
96
  }
97
</style>