setting.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <template>
  2. <view class="content">
  3. <view class="cell-group">
  4. <view class="hflex acenter jbetween cell" @click="toPersonal">
  5. <view class="left">个人设置</view>
  6. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  7. </view>
  8. <view class="hflex acenter jbetween cell" @click="toAccount">
  9. <view class="left">账号信息</view>
  10. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  11. </view>
  12. <view class="hflex acenter jbetween cell" @click="toWallet">
  13. <view class="left">提现账号管理</view>
  14. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  15. </view>
  16. <view class="hflex acenter jbetween cell" @click="toAddress">
  17. <view class="left">地址管理</view>
  18. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  19. </view>
  20. </view>
  21. <view class="cell-group">
  22. <view class="hflex acenter jbetween cell" @click="about">
  23. <view class="left">关于我们</view>
  24. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  25. </view>
  26. <view class="hflex acenter jbetween cell" @click="open">
  27. <view class="left">账号注销</view>
  28. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  29. </view>
  30. </view>
  31. <view class="cell-group hflex acenter jcenter">
  32. <view class="button" @click="quit">退出登录</view>
  33. </view>
  34. <u-modal :show="show" :title="title" :content='content' :showCancelButton="true" :closeOnClickOverlay="true" @confirm="cancelaccount" @cancel="close"></u-modal>
  35. </view>
  36. </template>
  37. <script>
  38. import $api from '@/static/js/api.js'
  39. var that = ''
  40. export default {
  41. data() {
  42. return {
  43. show: false,
  44. title: '是否注销账号',
  45. content: '注销后,账号所有信息将全部清空,此操作不可逆!'
  46. }
  47. },
  48. onLoad() {
  49. that = this
  50. },
  51. methods: {
  52. // 个人信息
  53. toPersonal() {
  54. $api.jump('/pages/mine/service/setting/personal')
  55. },
  56. // 账号信息
  57. toAccount() {
  58. $api.jump('/pages/mine/service/setting/account_info')
  59. },
  60. toWallet() {
  61. $api.jump('/pages/mine/wallet/bankList')
  62. },
  63. toAddress() {
  64. $api.jump('/pages/mine/service/address/address')
  65. },
  66. // 关于我们
  67. about() {
  68. $api.jump('/pages/mine/service/setting/about')
  69. },
  70. open() {
  71. $api.jump('/pages/mine/service/setting/log_off')
  72. },
  73. close() {
  74. that.show = false
  75. },
  76. // 账号注销
  77. cancelaccount() {
  78. $api.req({
  79. url: '/data/api.business.User/cancellation',
  80. method: 'POST',
  81. }, function(res) {
  82. if(res.code == 1) {
  83. uni.removeStorageSync("token")
  84. uni.removeStorageSync("myUsername")
  85. uni.removeStorageSync("id")
  86. uni.WebIM.conn.close();
  87. $api.jump('/pages/login/login/index',2)
  88. }
  89. })
  90. },
  91. // 平台规则
  92. rules() {
  93. $api.jump('/pages/mine/setting/rules')
  94. },
  95. // 退出登录
  96. quit() {
  97. uni.removeStorageSync("token")
  98. uni.removeStorageSync("myUsername")
  99. uni.removeStorageSync("id")
  100. uni.WebIM.conn.close();
  101. $api.jump('/pages/tabbar/mine/mine',2)
  102. }
  103. },
  104. }
  105. </script>
  106. <style lang="scss" scoped>
  107. .content {
  108. background-color: #f5f5f5;
  109. .cell-group {
  110. width: 100%;
  111. background-color: #fff;
  112. margin-top: 20rpx;
  113. padding: 0 30rpx;
  114. box-sizing: border-box;
  115. .cell {
  116. box-sizing: border-box;
  117. padding: 36rpx 0;
  118. border-bottom: 1rpx solid #f5f5f5;
  119. .left {
  120. font-size: 30rpx;
  121. color: #222;
  122. }
  123. }
  124. .button {
  125. font-size: 36rpx;
  126. color: #506dff;
  127. padding: 20rpx 0;
  128. }
  129. }
  130. }
  131. </style>