setting.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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=''>
  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=''>
  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">
  26. 退出登录
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. };
  35. },
  36. methods: {
  37. tofor() {
  38. uni.navigateTo({
  39. url: '/pages/login/forgetPassword'
  40. })
  41. },
  42. toproblem() {
  43. uni.navigateTo({
  44. url: '/pages/mine/problem'
  45. })
  46. },
  47. abount(){
  48. uni.navigateTo({
  49. url:'/pages/mine/abount'
  50. })
  51. }
  52. }
  53. }
  54. </script>
  55. <style lang="scss">
  56. .button {
  57. width: 694rpx;
  58. height: 92rpx;
  59. background: #FFFFFF;
  60. border-radius: 16rpx;
  61. font-size: 32rpx;
  62. font-family: PingFangSC, PingFang SC;
  63. font-weight: 400;
  64. color: #06A971;
  65. text-align: center;
  66. line-height: 92rpx;
  67. margin-top: 20rpx;
  68. }
  69. .page {
  70. background-color: rgba(246, 246, 246, 1);
  71. padding: 20rpx 28rpx 0;
  72. min-height: 100vh;
  73. }
  74. .font {
  75. font-size: 28rpx;
  76. font-family: PingFangSC, PingFang SC;
  77. font-weight: 400;
  78. color: #222222;
  79. }
  80. .box {
  81. width: 694rpx;
  82. height: 524rpx;
  83. background: #FFFFFF;
  84. border-radius: 16rpx;
  85. padding: 40rpx 20rpx 0 24rpx;
  86. }
  87. </style>