江西小程序管理端
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.

77 lines
1.7 KiB

1 year ago
  1. <template>
  2. <view class="privacyPopup">
  3. <view class="h2">个人信息保护声明</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. position: relative;
  30. background: linear-gradient(180deg, #C1DFFE 0%, #FFFFFF 20%);
  31. border-radius: 16rpx;
  32. .h2 {
  33. padding: 42rpx 0 0 0;
  34. font-size: 36rpx;
  35. color: #333;
  36. text-align: center;
  37. font-weight: 600;
  38. }
  39. .content {
  40. padding: 30rpx 30rpx 120rpx 30rpx;
  41. font-size: 28rpx;
  42. color: #333;
  43. .nickName {
  44. z-index: 2em;
  45. }
  46. .text {
  47. margin-top: 16rpx;
  48. z-index: 2em;
  49. }
  50. }
  51. .btnBox {
  52. width: 100%;
  53. height: 110rpx;
  54. border-top: 1rpx solid #E8E9EC;
  55. display: flex;
  56. padding: 30rpx 0;
  57. position: absolute;
  58. left: 0;
  59. bottom: 0;
  60. .btn {
  61. flex: 1;
  62. text-align: center;
  63. color: #ADADAD;
  64. font-size: 36rpx;
  65. }
  66. .btn.right {
  67. color: $themC;
  68. }
  69. }
  70. }
  71. </style>