shezhi.vue 3.2 KB

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