cancelAccount.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <template>
  2. <view>
  3. <u-navbar title="注销账号" title-color="#101010"></u-navbar>
  4. <view class="background">
  5. <view class="main">
  6. <view class="top">
  7. <view class="img-box">
  8. <image class="img" src="@/assets/img/vessel2.png" mode=""></image>
  9. </view>
  10. </view>
  11. <view class="content">
  12. <p>我们很遗憾您做出注销帐号的决定,在决定注销前请您仔细阅读以下内容:</p>
  13. <p>1.您应确保您有权决定该账户的注销事宜,不侵犯任何第三方的合法权益,如因此引发任何投诉争议,由您自行承担。</p>
  14. <p>2.帐号注销后您无法再使用本产品的各项服务,您的个人信息及使用记录也将被清空。</p>
  15. <p>3.如您已被国家机关调查或正处于诉讼、仲裁程序中,请注意,注销您的帐号并不代表此帐号注销前的帐号行为和相关责任得到豁免或减轻。</p>
  16. </p>
  17. <view class="notice">
  18. 注:本平台暂不提供线上注销账号功能,如您确有注销需求,可拨打客服电话沟通解决。
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. <!-- 底部 -->
  24. <view class="bottom">
  25. <button class="service">
  26. <view>
  27. <image class="img" src="@/assets/img/riFill-customer-service-2-fill 1.svg" mode=""></image>
  28. </view>
  29. 客服电话(7:00-24:00)
  30. </button>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. }
  39. },
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. .background {
  44. position: relative;
  45. height: 200px;
  46. background: linear-gradient(180deg, rgba(255, 217, 217, 1) 0%, rgba(255, 217, 217, 0) 100%);
  47. .main {
  48. position: absolute;
  49. top: 24rpx;
  50. left: 32rpx;
  51. right: 32rpx;
  52. background-color: #fff;
  53. border-radius: 8px;
  54. overflow: hidden;
  55. font-size: 32rpx;
  56. line-height: 46rpx;
  57. .top {
  58. background: linear-gradient(180deg, rgba(255, 100, 106, 1) 0%, rgba(255, 161, 164, 1) 98%);
  59. height: 204rpx;
  60. display: flex;
  61. align-items: center;
  62. justify-content: center;
  63. .img-box {
  64. .img {
  65. width: 144rpx;
  66. height: 144rpx;
  67. }
  68. }
  69. }
  70. .content {
  71. padding: 32rpx;
  72. line-height: 46rpx;
  73. color: rgb(16,16,16);
  74. p{
  75. margin-bottom: 16rpx;
  76. }
  77. .notice{
  78. font-weight: bold;
  79. }
  80. }
  81. }
  82. }
  83. // 底部
  84. .bottom {
  85. background-color: #fff;
  86. position: fixed;
  87. bottom: 0;
  88. left: 0;
  89. right: 0;
  90. padding: 24rpx 32rpx;
  91. .service {
  92. display: flex;
  93. justify-content: center;
  94. align-items: center;
  95. color: rgba(255, 255, 255, 1);
  96. font-size: 32rpx;
  97. border-radius: 50px;
  98. background: linear-gradient(-88.46deg, rgba(34, 109, 198, 1) 2.59%, rgba(9, 158, 237, 1) 97.02%);
  99. }
  100. .img {
  101. width: 40rpx;
  102. height: 40rpx;
  103. vertical-align: middle;
  104. margin-right: 16rpx;
  105. }
  106. }
  107. </style>