setting.vue 2.1 KB

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