setting.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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>
  27. <view class="cell-group hflex acenter jcenter">
  28. <view class="button" @click="quit">退出登录</view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. import $api from '@/static/js/api.js'
  34. var that = ''
  35. export default {
  36. data() {
  37. return {
  38. }
  39. },
  40. onLoad() {
  41. that = this
  42. },
  43. methods: {
  44. // 个人信息
  45. toPersonal() {
  46. $api.jump('/pages/mine/service/setting/personal')
  47. },
  48. // 账号信息
  49. toAccount() {
  50. $api.jump('/pages/mine/service/setting/account_info')
  51. },
  52. toWallet() {
  53. $api.jump('/pages/mine/wallet/bankList')
  54. },
  55. toAddress() {
  56. $api.jump('/pages/mine/service/address/address')
  57. },
  58. // 关于我们
  59. about() {
  60. $api.jump('/pages/mine/service/setting/about')
  61. },
  62. // 平台规则
  63. rules() {
  64. $api.jump('/pages/mine/setting/rules')
  65. },
  66. // 退出登录
  67. quit() {
  68. uni.removeStorageSync("token")
  69. uni.removeStorageSync("myUsername")
  70. uni.removeStorageSync("id")
  71. uni.WebIM.conn.close();
  72. $api.jump('/pages/tabbar/mine/mine',2)
  73. }
  74. },
  75. }
  76. </script>
  77. <style lang="scss" scoped>
  78. .content {
  79. background-color: #f5f5f5;
  80. .cell-group {
  81. width: 100%;
  82. background-color: #fff;
  83. margin-top: 20rpx;
  84. padding: 0 30rpx;
  85. box-sizing: border-box;
  86. .cell {
  87. box-sizing: border-box;
  88. padding: 36rpx 0;
  89. border-bottom: 1rpx solid #f5f5f5;
  90. .left {
  91. font-size: 30rpx;
  92. color: #222;
  93. }
  94. }
  95. .button {
  96. font-size: 36rpx;
  97. color: #506dff;
  98. padding: 20rpx 0;
  99. }
  100. }
  101. }
  102. </style>