cancelAccount.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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/vessel.svg" 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. .top {
  56. background: linear-gradient(180deg, rgba(255, 100, 106, 1) 0%, rgba(255, 161, 164, 1) 98%);
  57. height: 204rpx;
  58. display: flex;
  59. align-items: center;
  60. justify-content: center;
  61. .img-box {
  62. .img {
  63. width: 144rpx;
  64. height: 144rpx;
  65. // box-shadow: 0px 6px 10px 0px rgba(255,0,9,1);
  66. }
  67. }
  68. }
  69. .content {
  70. padding: 32rpx;
  71. line-height: 46rpx;
  72. color: rgb(16,16,16);
  73. p{
  74. margin-bottom: 16rpx;
  75. }
  76. .notice{
  77. font-weight: bold;
  78. }
  79. }
  80. }
  81. }
  82. // 底部
  83. .bottom {
  84. background-color: #fff;
  85. position: fixed;
  86. bottom: 0;
  87. left: 0;
  88. right: 0;
  89. padding: 24rpx 32rpx;
  90. .service {
  91. display: flex;
  92. justify-content: center;
  93. align-items: center;
  94. color: rgba(255, 255, 255, 1);
  95. font-size: 32rpx;
  96. border-radius: 50px;
  97. background: linear-gradient(-88.46deg, rgba(34, 109, 198, 1) 2.59%, rgba(9, 158, 237, 1) 97.02%);
  98. }
  99. .img {
  100. width: 40rpx;
  101. height: 40rpx;
  102. vertical-align: middle;
  103. margin-right: 16rpx;
  104. }
  105. }
  106. </style>