setting.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.WebIM.conn.close();
  60. $api.jump('/pages/tabbar/mine/mine',3)
  61. }
  62. },
  63. }
  64. </script>
  65. <style lang="scss" scoped>
  66. .content {
  67. background-color: #f5f5f5;
  68. .cell-group {
  69. width: 100%;
  70. background-color: #fff;
  71. margin-top: 20rpx;
  72. padding: 0 30rpx;
  73. box-sizing: border-box;
  74. .cell {
  75. box-sizing: border-box;
  76. padding: 36rpx 0;
  77. border-bottom: 1rpx solid #f5f5f5;
  78. .left {
  79. font-size: 30rpx;
  80. color: #222;
  81. }
  82. }
  83. .button {
  84. font-size: 36rpx;
  85. color: #506dff;
  86. padding: 20rpx 0;
  87. }
  88. }
  89. }
  90. </style>