gf-yinsi.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <view class="gf-yinsi">
  3. <u-modal v-model="show" title="用户隐私保护提示" :show-cancel-button="true" confirm-text="同意并继续" cancel-text="不同意并退出" @cancel="handleDisagree">
  4. <view class="xieyi-content">
  5. <text class="text1">感谢您使用小程序,您使用小程序前应当阅并同意</text>
  6. <text class="text2" @click="open">{{privacyContractName}}</text>
  7. <text class="text1">当您点击同意并开始时用产品服务时,即表示你已理解并同息该条款内容,该条款将对您产生法律约束力。如您拒绝,将无法进入小程序。</text>
  8. </view>
  9. <button slot="confirm-button" open-type="agreePrivacyAuthorization" class="weui-btn" @agreeprivacyauthorization="handleAgree">同意并继续</button>
  10. </u-modal>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. name: "gf-yinsi",
  16. data() {
  17. return {
  18. show: false,
  19. privacyContractName: ''
  20. };
  21. },
  22. created() {
  23. if (wx.getPrivacySetting) {
  24. wx.getPrivacySetting({
  25. success: res => {
  26. console.log("是否需要授权:", res.needAuthorization, "隐私协议的名称为:", res.privacyContractName)
  27. if (res.needAuthorization) {
  28. this.privacyContractName = res.privacyContractName
  29. this.show = true
  30. } else {
  31. this.handleAgree()
  32. }
  33. },
  34. fail: () => {},
  35. complete: () => {},
  36. })
  37. } else {
  38. // 低版本基础库不支持 wx.getPrivacySetting 接口,隐私接口可以直接调用
  39. this.handleAgree()
  40. }
  41. },
  42. methods: {
  43. open() {
  44. wx.openPrivacyContract({
  45. success: res => {
  46. console.log('openPrivacyContract success')
  47. },
  48. fail: res => {
  49. console.error('openPrivacyContract fail', res)
  50. }
  51. })
  52. },
  53. handleDisagree(e) {
  54. wx.exitMiniProgram()
  55. },
  56. handleAgree(e) {
  57. this.$emit('handleAgree')
  58. },
  59. }
  60. }
  61. </script>
  62. <style lang="scss">
  63. .gf-yinsi {
  64. .weui-btn {
  65. padding: 0;
  66. margin: 0;
  67. background-color: #fff;
  68. border: none;
  69. height: 100rpx;
  70. line-height: 100rpx;
  71. font-size: 32rpx;
  72. box-sizing: border-box;
  73. cursor: pointer;
  74. text-align: center;
  75. border-radius: 4rpx;
  76. color: #2979ff;
  77. }
  78. .weui-btn::after {
  79. border: none;
  80. }
  81. .xieyi-content {
  82. padding: 24rpx;
  83. .text1 {
  84. color: #666;
  85. font-size: 28rpx;
  86. }
  87. .text2 {
  88. font-size: 28rpx;
  89. color: blue;
  90. }
  91. }
  92. }
  93. </style>