accountCancellation.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <view class="page">
  3. <view style="margin-bottom: 40rpx;">在注销账户前,请您进行以下风险确认:</view>
  4. <view> 1.请您注意在【我-钱包]中确认您是否存在尚未使用或提现的余额、优惠券等权益,我们建议您在注销前妥当处理您的资产,例如提现至银行卡、使用相关权益等。</view>
  5. <view> 2.请您务必审慎阅读关于您权益的重要提示,确保在您注销账号时已处理完毕权益。</view>
  6. <button class="btn">注销账号</button>
  7. <view class="cancellation">
  8. 注销后账户不可恢复,请谨慎操作
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. }
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style scoped lang="scss">
  23. .page {
  24. background-color: #fff;
  25. height: 92.5vh;
  26. padding: 54rpx 44rpx;
  27. font-size: 30rpx;
  28. color: rgba(34, 34, 34, .7);
  29. .btn{
  30. background-color: #f83224;
  31. border-radius: 44rpx;
  32. color: #fff;
  33. margin-top: 108rpx
  34. }
  35. .cancellation{
  36. font-size: 24rpx;
  37. text-align: center;
  38. margin-top: 32rpx;
  39. }
  40. }
  41. </style>