多租户商城-商户小程序端
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.

111 lines
3.6 KiB

2 years ago
2 years ago
  1. <template>
  2. <view class="content">
  3. <view class="topbg">
  4. <image src="https://zk-cereshop.oss-cn-shenzhen.aliyuncs.com/z…043464279494de4b8129f5155135d6e_unsubscribeBg.png" mode=""></image>
  5. </view>
  6. <view class="content-text">
  7. <view class="text-align fs32 fs-bold">
  8. 账户注销重要提醒
  9. </view>
  10. <view class="font-color-C5AA7B fs30 mar-top-20">
  11. 在您确认注销平台账户之前请您充分阅读理解并同意下列事项
  12. </view>
  13. <view class="mar-top-20">
  14. 如您不同意下列任一内容请不要进行账户注销操作您通过网络页面确认申请注销视为您同意接受本提醒所有内容
  15. </view>
  16. <p class="mar-top-20">1. 本帐号的个人资料和历史信息包括头像用户订单记录浏览记录收藏等都将无法找回</p>
  17. <p class="mar-top-20">2. 你将无法登录使用本帐号</p>
  18. <p class="mar-top-20">3. 通过本帐号使用授权登录或绑定本帐号后使用的相关记录将无法找回你将无法再登录使用上述服务你曾获得的虚拟权益等财产性利益视为你自动放弃将无法继续使用</p>
  19. </view>
  20. <view class="content-text">
  21. <view class="fs32 fs-bold">
  22. 注销后您将放弃以下权限
  23. </view>
  24. <p class="mar-top-20">1. 您的所有交易记录将被清空请确保所有交易已完结且无纠纷账户注销后因历史交易可能产生的退换货维权相关的资金退回等权益将视作自动放弃</p>
  25. <p class="mar-top-20">2. 您的身份信息账户信息积分会员权益等将被清空且无法恢复</p>
  26. </view>
  27. <view class="content-text">
  28. <view class="fs32 fs-bold">
  29. 注销您需要满足以下条件
  30. </view>
  31. <p class="mar-top-20">1. 账户近期不存在交易您的账户无未完成订单无已完成但未满15天订单</p>
  32. <p class="mar-top-20">2. 账户相关财产权益已结清您的账户不存在可提现的余额</p>
  33. </view>
  34. <view class="content-text">
  35. <view class="agreement">
  36. <image v-if="!agreement" src="http://36.138.125.206:8081/ceres-local-file/static/root/none.png" mode="" @click="agreement=true"></image>
  37. <image v-else src="http://36.138.125.206:8081/ceres-local-file/static/root/solid.png" mode="" @click="agreement=false"></image>
  38. <text class="font-color-999">我已阅读并同意</text>
  39. <text class="font-color-C5AA7B" @click="protocol('app_user_agreement')">账户注销重要提醒</text>
  40. </view>
  41. <view class="btn" @click="consent">同意注销</view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. data() {
  48. return {
  49. agreement:false
  50. }
  51. },
  52. methods:{
  53. consent(){
  54. if(!this.agreement){
  55. uni.showToast({
  56. title: '请先阅读并同意《账户注销重要提醒》',
  57. duration: 2000,
  58. icon: 'none'
  59. });
  60. }else{
  61. uni.navigateTo({
  62. url:'unsubscribeCode'
  63. })
  64. }
  65. }
  66. }
  67. }
  68. </script>
  69. <style lang="scss" scoped>
  70. .content {
  71. background-color: #F5F5F5;
  72. .topbg {
  73. width: 100%;
  74. height: 400rpx;
  75. image {
  76. width: 100%;
  77. height: 100%;
  78. }
  79. }
  80. .content-text {
  81. position: relative;
  82. top: -340rpx;
  83. margin: 30rpx;
  84. border-radius: 5rpx;
  85. padding: 30rpx;
  86. background-color: #FFFFFF;
  87. .btn{
  88. background: #333333;
  89. color: #FFFFFF;
  90. height: 88rpx;
  91. width: 600rpx;
  92. text-align: center;
  93. line-height: 88rpx;
  94. margin-top: 40rpx;
  95. }
  96. .agreement {
  97. line-height: 50rpx;
  98. image{
  99. width: 34rpx;
  100. height: 34rpx;
  101. margin-right: 15upx;
  102. }
  103. }
  104. }
  105. }
  106. </style>