setting.vue 2.0 KB

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