shezhi.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <template>
  2. <view class="setting">
  3. <view class="setting-box">
  4. <view class="setting-row u-flex u-row-between" @click="tochangetel">
  5. <text class="text">手机号</text>
  6. <input class="input" type="text" placeholder="" :value="mobile.replace(/(\d{3})\d{4}(\d{4})/, '$1****$2')" :disabled="true">
  7. <u-icon name="arrow-right" color="rgba(76, 76, 76, 0.6)"></u-icon>
  8. </view>
  9. <view class="setting-row u-flex u-row-between" @click="tochangepwd">
  10. <text class="text">修改密码</text>
  11. <u-icon name="arrow-right" color="rgba(76, 76, 76, 0.6)"></u-icon>
  12. </view>
  13. </view>
  14. <u-gap height="20"></u-gap>
  15. <view class="setting-box">
  16. <view class="setting-row u-flex u-row-between" @click="toxiaoxi">
  17. <text class="text">消息通知</text>
  18. <u-icon name="arrow-right" color="rgba(76, 76, 76, 0.6)"></u-icon>
  19. </view>
  20. <view class="setting-row u-flex u-row-between" @click="tozhaohu">
  21. <text class="text">打招呼语</text>
  22. <u-icon name="arrow-right" color="rgba(76, 76, 76, 0.6)"></u-icon>
  23. </view>
  24. </view>
  25. <u-gap height="20"></u-gap>
  26. <view class="setting-box">
  27. <view class="setting-row u-flex u-row-between" @click="toxieyi(1)">
  28. <text class="text">用户协议</text>
  29. <u-icon name="arrow-right" color="rgba(76, 76, 76, 0.6)"></u-icon>
  30. </view>
  31. <view class="setting-row u-flex u-row-between" @click="toxieyi(2)">
  32. <text class="text">隐私政策</text>
  33. <u-icon name="arrow-right" color="rgba(76, 76, 76, 0.6)"></u-icon>
  34. </view>
  35. </view>
  36. <u-gap height="20"></u-gap>
  37. <view class="login-out" @click="outlogin">
  38. 退出登录
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. import {index} from "@/units/inquire.js"
  44. export default {
  45. data() {
  46. return {
  47. mobile: '',
  48. }
  49. },
  50. onShow() {
  51. this.getuser()
  52. },
  53. methods: {
  54. toxieyi(type) {
  55. uni.navigateTo({
  56. url: "/pagesA/xieyi?type=" + type
  57. })
  58. },
  59. outlogin() {
  60. uni.showModal({
  61. title: "提示",
  62. content: "确认退出吗?",
  63. success: (e) => {
  64. if (e.confirm) {
  65. uni.clearStorageSync()
  66. uni.reLaunch({
  67. url: "/pages/login/login"
  68. })
  69. }
  70. }
  71. })
  72. },
  73. getuser() {
  74. index().then(res => {
  75. this.mobile = res.data.mobile
  76. })
  77. },
  78. tozhaohu() {
  79. uni.navigateTo({
  80. url: "/pagesD/zhaohu"
  81. })
  82. },
  83. toxiaoxi() {
  84. uni.navigateTo({
  85. url: "/pagesD/xiaoxi"
  86. })
  87. },
  88. tochangetel() {
  89. uni.navigateTo({
  90. url: "/pagesD/change-tel"
  91. })
  92. },
  93. tochangepwd() {
  94. uni.navigateTo({
  95. url: "/pagesD/change-pwd"
  96. })
  97. }
  98. }
  99. }
  100. </script>
  101. <style lang="scss">
  102. .setting {
  103. .login-out {
  104. line-height: 92rpx;
  105. background: #FFFFFF;
  106. text-align: center;
  107. font-size: 32rpx;
  108. font-family: PingFangSC-Regular, PingFang SC;
  109. font-weight: 400;
  110. color: #FF3F3F;
  111. }
  112. .setting-box {
  113. background-color: #fff;
  114. padding: 0 32rpx;
  115. .setting-row {
  116. height: 124rpx;
  117. border-bottom: 2rpx solid #F0F0F0;
  118. .text {
  119. font-size: 32rpx;
  120. font-family: PingFangSC-Regular, PingFang SC;
  121. font-weight: 400;
  122. color: #222222;
  123. }
  124. .input {
  125. flex: 1;
  126. text-align: right;
  127. font-size: 32rpx;
  128. margin: 0 8rpx;
  129. }
  130. }
  131. }
  132. }
  133. page {
  134. background-color: #F3F3F3;
  135. }
  136. </style>