学员端小程序
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.

78 lines
1.7 KiB

  1. <template>
  2. <view class="privacyPopup">
  3. <view class="h1">个人信息保护声明</view>
  4. <view class="content">
  5. <view class="nickName">亲爱的用户</view>
  6. <view class="text">
  7. 感谢您信任并使用江西驾考公共服
  8. 务平台小程序我们深知个人信息对您
  9. 的重要性非常重视您的个人信息和隐
  10. 私保护并会尽全力保护您的个人信息
  11. 安全可靠我们承诺我们将按业界成
  12. 熟的安全标准采取相应的安全保护措
  13. 隐私政策帮助您了解我们收集使
  14. 存储和共享个人信息的情况
  15. 在您注册成为学员的过程中您需要
  16. </view>
  17. </view>
  18. <view class="btnBox">
  19. <view class="btn" @click="$emit('disagree')">不同意</view>
  20. <view class="btn right" @click="$emit('agree')">同意</view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. </script>
  26. <style lang="scss" scoped>
  27. .privacyPopup {
  28. width: 558rpx;
  29. // height: 762rpx;
  30. position: relative;
  31. background: linear-gradient(180deg, #C1DFFE 0%, #FFFFFF 20%);
  32. border-radius: 16rpx;
  33. .h1 {
  34. padding: 42rpx 0 0 0;
  35. font-size: 36rpx;
  36. color: #333;
  37. text-align: center;
  38. font-weight: 600;
  39. }
  40. .content {
  41. padding: 30rpx 30rpx 120rpx 30rpx;
  42. font-size: 28rpx;
  43. color: #333;
  44. .nickName {
  45. z-index: 2em;
  46. }
  47. .text {
  48. margin-top: 16rpx;
  49. z-index: 2em;
  50. }
  51. }
  52. .btnBox {
  53. width: 100%;
  54. height: 110rpx;
  55. border-top: 1rpx solid #E8E9EC;
  56. display: flex;
  57. padding: 30rpx 0;
  58. position: absolute;
  59. left: 0;
  60. bottom: 0;
  61. .btn {
  62. flex: 1;
  63. text-align: center;
  64. color: #ADADAD;
  65. font-size: 36rpx;
  66. }
  67. .btn.right {
  68. color: $themC;
  69. }
  70. }
  71. }
  72. </style>