DelMemConfirm.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <template>
  2. <view class="page">
  3. <view class="list_info">
  4. <view class="title">为保证你的账号安全,在你提交的注销申请生效前,需同时满足以下条件</view>
  5. <view class="content">
  6. <view class="paragraph">
  7. <view class="subheading">1. 账号处于安全状态</view>
  8. <view class="subtitle">账号处于正常使用状态,无被盗风险</view>
  9. </view>
  10. <view class="paragraph">
  11. <view class="subheading">2.账号权限解除</view>
  12. <view class="subtitle">账号已解除与其他产品的授权登录或绑定关系</view>
  13. </view>
  14. <view class="paragraph">
  15. <view class="subheading">3.账号无任何纠纷,包括投诉举报</view>
  16. <view class="subtitle">本账号及通过本账号接入的第三方产品中没有未完成和/或存在争议的服务
  17. <view style="margin-top: 10rpx;">本账号无任何纠纷,包括投诉举报、侵权等</view>
  18. </view>
  19. </view>
  20. <view class="paragraph red">
  21. 注意:删除账号后,你将无法找回账号信息,你的所有数据和消息也会一并删除
  22. </view>
  23. </view>
  24. <view class="agree">
  25. <checkbox-group @change="agreeChange">
  26. <label>
  27. <checkbox value="agree" :checked="agree" :class="{ 'checked': agree, 'custom-checkbox': true }"
  28. style="display: none;" />
  29. <view class="custom-checkbox-box" :class="{ 'checked': agree }"></view>
  30. </label>
  31. </checkbox-group>
  32. <text @click="goPage()"><text style="color: #7c7c7c;padding-right: 5rpx;">我已阅读并同意</text> 注销协议</text>
  33. </view>
  34. <view class="btn_submit" @click="nextStep" :class="{ disabled: !agree }">下一步</view>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. export default {
  40. data() {
  41. return {
  42. agree: false,
  43. };
  44. },
  45. methods: {
  46. goPage() {
  47. uni.navigateTo({
  48. url: '/pages/AboutUs/UserLogoutAgreement'
  49. })
  50. },
  51. agreeChange(e) {
  52. this.agree = e.detail.value.includes('agree');
  53. },
  54. nextStep() {
  55. if (this.agree) {
  56. uni.navigateTo({
  57. url: '/pages/my/DelMemVerify',
  58. });
  59. }
  60. },
  61. },
  62. };
  63. </script>
  64. <style scoped lang="scss">
  65. .page {
  66. padding: 40rpx;
  67. box-sizing: border-box;
  68. }
  69. .list_info {
  70. display: flex;
  71. flex-direction: column;
  72. justify-content: flex-start;
  73. align-items: center;
  74. color: #1F1F1F;
  75. .title {
  76. margin-top: 60rpx;
  77. font-family: 'PingFang SC-Bold';
  78. font-weight: 400;
  79. font-size: 40rpx;
  80. margin-bottom: 34rpx;
  81. }
  82. .paragraph {
  83. margin-bottom: 36rpx;
  84. .subheading {
  85. font-size: 28rpx;
  86. font-family: 'PingFang SC-Bold';
  87. font-weight: 400;
  88. }
  89. .subtitle {
  90. margin-top: 4rpx;
  91. font-size: 24rpx;
  92. font-family: 'PingFang SC';
  93. font-weight: 400;
  94. color: #7C7C7C;
  95. }
  96. &.red {
  97. color: #FF0000;
  98. font-size: 24rpx;
  99. font-weight: 400;
  100. }
  101. }
  102. .agree {
  103. margin-top: 200rpx;
  104. text-align: left;
  105. width: 626rpx;
  106. color: #333;
  107. font-size: 28rpx;
  108. display: flex;
  109. align-items: center;
  110. justify-content: center;
  111. font-size: 24rpx;
  112. font-family: 'PingFang SC-Medium';
  113. .custom-checkbox-box {
  114. display: inline-block;
  115. width: 28rpx;
  116. height: 28rpx;
  117. background-image: url('../../static/icon/wd_icon_gouxuan01.png'); // 未选中状态图片路径
  118. background-size: cover;
  119. margin-right: 10rpx;
  120. vertical-align: middle;
  121. }
  122. .custom-checkbox-box.checked {
  123. background-image: url('../../static/icon/wd_icon_gouxuan02.png'); // 选中状态图片路径
  124. }
  125. }
  126. .btn_submit {
  127. width: 660rpx;
  128. height: 96rpx;
  129. margin: 0 auto;
  130. margin-top: 40rpx;
  131. background: #1f1f1f;
  132. border-radius: 50rpx;
  133. font-weight: bold;
  134. font-size: 32rpx;
  135. color: #ffffff;
  136. display: flex;
  137. flex-direction: row;
  138. justify-content: center;
  139. align-items: center;
  140. &.disabled {
  141. background: #999;
  142. }
  143. }
  144. }
  145. </style>