zhuxiao.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <view>
  3. <view class="info">
  4. <view class="title">
  5. 请告诉我们注销账号的原因
  6. </view>
  7. <view class="item-box u-flex u-col-center u-row-between" @click="zhuxiao">
  8. <text class="text1" style="flex: 1;">重新注册/换绑手机号</text>
  9. <u-icon name="arrow-right"></u-icon>
  10. </view>
  11. <view class="item-box u-flex u-col-center u-row-between" @click="zhuxiao">
  12. <text class="text1" style="flex: 1;">找到伴侣不再使用了</text>
  13. <u-icon name="arrow-right"></u-icon>
  14. </view>
  15. <view class="item-box u-flex u-col-center u-row-between" @click="zhuxiao">
  16. <text class="text1" style="flex: 1;">其他原因</text>
  17. <u-icon name="arrow-right"></u-icon>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. }
  27. },
  28. methods: {
  29. zhuxiao(){
  30. var that=this
  31. uni.showModal({
  32. title: '账号注销提醒',
  33. content: '账号注销无法恢复,请谨慎操作',
  34. cancelColor:'#B1B1B1',
  35. cancelText:'确定注销',
  36. confirmColor:'#A890FE',
  37. confirmText:'我再想想',
  38. success: function (res) {
  39. if (res.confirm) {
  40. console.log('用户点击取消');
  41. } else if (res.cancel) {
  42. uni.$u.http.post('/api/user/user_cancellation').then(res => {
  43. if(res.code==1){
  44. that.$u.toast(res.msg)
  45. setTimeout(()=>{
  46. uni.clearStorageSync();
  47. uni.navigateTo({
  48. url:'./login'
  49. })
  50. },2000)
  51. }
  52. })
  53. }
  54. }
  55. });
  56. }
  57. }
  58. }
  59. </script>
  60. <style lang="scss">
  61. .item-box {
  62. background-color: #fff;
  63. padding: 30rpx 36rpx;
  64. .text1 {
  65. font-size: 28rpx;
  66. font-family: SF Pro;
  67. font-weight: 500;
  68. color: #444;
  69. }
  70. image {
  71. width: 116rpx;
  72. height: 116rpx;
  73. border-radius: 100rpx;
  74. }
  75. input {
  76. flex: 1;
  77. text-align: right;
  78. }
  79. }
  80. page{
  81. background-color: #F3F3F3;
  82. }
  83. .info{
  84. background-color: #fff;
  85. padding: 0 50rpx;
  86. .title{
  87. font-size: 20rpx;
  88. color: #888888;
  89. height: 72rpx;
  90. line-height: 72rpx;
  91. border-bottom: 2rpx solid #F2F2F2;
  92. }
  93. }
  94. </style>