setting.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <template>
  2. <view class="page">
  3. <view class="box">
  4. <view class="u-flex u-row-between" @click='tofor'>
  5. <text class='font'>密码设置</text>
  6. <image src="/static/images/return.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
  7. </view>
  8. <view class="u-flex u-row-between" style='margin-top:64rpx' @click='privacy'>
  9. <text class='font'>隐私服务</text>
  10. <image src="/static/images/return.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
  11. </view>
  12. <view class="u-flex u-row-between" style='margin-top:64rpx' @click='serve'>
  13. <text class='font'>服务协议</text>
  14. <image src="/static/images/return.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
  15. </view>
  16. <view class="u-flex u-row-between" style='margin-top:64rpx' @click='toproblem'>
  17. <text class='font'>常见问题</text>
  18. <image src="/static/images/return.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
  19. </view>
  20. <view class="u-flex u-row-between" style='margin-top:64rpx' @click='abount'>
  21. <text class='font'>关于我们</text>
  22. <image src="/static/images/return.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
  23. </view>
  24. </view>
  25. <view class="button" @click="toquit">
  26. 退出登录
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. };
  35. },
  36. methods: {
  37. serve(){
  38. uni.navigateTo({
  39. url:'/pages/mine/serve'
  40. })
  41. },
  42. privacy(){
  43. uni.navigateTo({
  44. url:'/pages/mine/privacy'
  45. })
  46. },
  47. tofor() {
  48. uni.navigateTo({
  49. url: '/pages/login/forgetPassword'
  50. })
  51. },
  52. toproblem() {
  53. uni.navigateTo({
  54. url: '/pages/mine/problem'
  55. })
  56. },
  57. abount(){
  58. uni.navigateTo({
  59. url:'/pages/mine/abount'
  60. })
  61. },
  62. toquit(){
  63. uni.clearStorageSync()
  64. uni.navigateTo({
  65. url:'/pages/login/login'
  66. })
  67. }
  68. }
  69. }
  70. </script>
  71. <style lang="scss">
  72. .button {
  73. width: 694rpx;
  74. height: 92rpx;
  75. background: #FFFFFF;
  76. border-radius: 16rpx;
  77. font-size: 32rpx;
  78. font-family: PingFangSC, PingFang SC;
  79. font-weight: 400;
  80. color: #06A971;
  81. text-align: center;
  82. line-height: 92rpx;
  83. margin-top: 20rpx;
  84. }
  85. .page {
  86. background-color: rgba(246, 246, 246, 1);
  87. padding: 20rpx 28rpx 0;
  88. min-height: 100vh;
  89. }
  90. .font {
  91. font-size: 28rpx;
  92. font-family: PingFangSC, PingFang SC;
  93. font-weight: 400;
  94. color: #222222;
  95. }
  96. .box {
  97. width: 694rpx;
  98. height: 524rpx;
  99. background: #FFFFFF;
  100. border-radius: 16rpx;
  101. padding: 40rpx 20rpx 0 24rpx;
  102. }
  103. </style>