set.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <template>
  2. <view class="set-page">
  3. <navBar name="设置" left="0"></navBar>
  4. <image @click="editAvatarFn" :src="userInfo.headimg || defaultHeadImg" class="head-img" />
  5. <view class="list-wrap">
  6. <view v-for="(item, index) in list" :key="index" class="item" @tap="routerLink(item.url)">
  7. <view class="title">{{ item.title }}</view>
  8. <view :class="['text-right', item.hideArrow && 'hide-arrow']">
  9. <view v-if="item.textProp == 'registrationTime' && userInfo.ctime">
  10. {{ formatTimestamp(userInfo.ctime) }}
  11. </view>
  12. <input class="inp" @input="handleInput" @blur="inpfn" maxlength="22"
  13. v-if="item.textProp == 'nickname'" v-model="userInfo[item.textProp]" type="text" />
  14. <block v-else>
  15. {{ userInfo[item.textProp] || '' }}
  16. </block>
  17. </view>
  18. </view>
  19. </view>
  20. <view class="zx-form-btn fix-bottom-btn logout-btn" @tap="handleQuit">退出登录</view>
  21. </view>
  22. </template>
  23. <script>
  24. const storage = require('@/common/storage.js')
  25. import {
  26. QINIU_URL,
  27. defaultHeadImg
  28. } from '@/common/constant'
  29. var config = require('../../common/config_gyq.js');
  30. var http = require('../../common/request');
  31. const common = require('../../common/common.js');
  32. export default {
  33. data() {
  34. return {
  35. isComposing: false,
  36. QINIU_URL,
  37. defaultHeadImg,
  38. userInfo: {},
  39. list: [{
  40. title: '昵称',
  41. url: '',
  42. textProp: 'nickname'
  43. },
  44. {
  45. title: '注册时间',
  46. textProp: 'registrationTime',
  47. hideArrow: true
  48. },
  49. {
  50. title: '修改密码',
  51. url: '/pages/loginRegister/changePassword'
  52. },
  53. {
  54. title: '关于我们',
  55. url: '/pages/aboutMy/aboutMy',
  56. textProp: 'version'
  57. },
  58. {
  59. title: '隐私协议',
  60. url: '/pages/contract/contract?contract_id=270'
  61. },
  62. {
  63. title: '用户条款',
  64. url: '/pages/contract/contract?contract_id=102'
  65. }
  66. ]
  67. }
  68. },
  69. onShow() {
  70. const user_token = storage.getUserToken()
  71. user_token && this.loadUserInfo()
  72. },
  73. methods: {
  74. // 输入处理
  75. handleInput(e) {
  76. // 延迟处理输入法组合输入
  77. setTimeout(() => {
  78. const value = e.detail.value;
  79. const truncated = this.truncateToMaxBytes(value, 22);
  80. // 更新值(避免无限触发,需判断)
  81. if (truncated !== value) {
  82. this.userInfo.nickname = truncated;
  83. }
  84. }, 0);
  85. },
  86. // 截断字符串至指定字节
  87. truncateToMaxBytes(str, maxBytes) {
  88. let totalBytes = 0;
  89. let result = '';
  90. for (const char of str) {
  91. // 判断字符是否为双字节(如中文)
  92. const charBytes = /[^\x00-\xff]/.test(char) ? 2 : 1;
  93. if (totalBytes + charBytes > maxBytes) break;
  94. totalBytes += charBytes;
  95. result += char;
  96. }
  97. return result;
  98. },
  99. formatTimestamp(timestamp) {
  100. const date = new Date(timestamp * 1000);
  101. return date.toLocaleDateString('zh-CN'); // 本地化格式(如:2021/5/3)
  102. },
  103. inpfn(e) {
  104. console.log(e.detail.value)
  105. this.editUserInfoFn()
  106. },
  107. editAvatarFn() {
  108. let _this = this
  109. common.upLoadImgQiNiu((imgUrl) => {
  110. _this.userInfo.headimg = imgUrl
  111. _this.editUserInfoFn()
  112. });
  113. },
  114. async editUserInfoFn() {
  115. let {
  116. data
  117. } = await http.postApi(config.API_USER_MODIFY_USER_INFO, {
  118. nickname: this.userInfo.nickname,
  119. head_img: this.userInfo.headimg,
  120. })
  121. storage.setUserInfoData(this.userInfo)
  122. },
  123. loadUserInfo() {
  124. const userInfo = storage.getUserInfoData()
  125. this.setData({
  126. userInfo
  127. })
  128. },
  129. routerLink(url) {
  130. uni.navigateTo({
  131. url
  132. })
  133. },
  134. handleQuit() {
  135. uni.showModal({
  136. title: '提示',
  137. content: '您确定要退出当前账号吗?',
  138. showCancel: true,
  139. cancelText: '取消',
  140. confirmText: '确定',
  141. success: function(res) {
  142. if (res.confirm) {
  143. storage.clearStorage()
  144. uni.reLaunch({
  145. url: '/pages/index/index'
  146. })
  147. }
  148. }
  149. })
  150. }
  151. }
  152. }
  153. </script>
  154. <style lang="scss">
  155. @import "@/libs/css/layout.scss";
  156. .inp {
  157. font-size: 30rpx;
  158. color: #060809;
  159. text-align: right;
  160. }
  161. .set-page {
  162. display: flex;
  163. flex-direction: column;
  164. align-items: center;
  165. padding: 0 32rpx 48rpx;
  166. .head-img {
  167. width: 174rpx;
  168. height: 174rpx;
  169. margin: 0 auto 40rpx;
  170. border-radius: 50%;
  171. }
  172. .list-wrap {
  173. width: 100%;
  174. background: #FFFFFF;
  175. border-radius: 40rpx;
  176. padding: 8rpx 32rpx;
  177. .item {
  178. padding: 40rpx 0;
  179. display: flex;
  180. justify-content: space-between;
  181. border-bottom: 2px solid #F1F4F5;
  182. &:last-child {
  183. border-bottom: 0;
  184. }
  185. .title {
  186. font-family: PingFangSC, PingFang SC;
  187. font-weight: bold;
  188. font-size: 32rpx;
  189. color: #060809;
  190. }
  191. .text-right {
  192. font-family: Futura, Futura;
  193. font-weight: 500;
  194. font-size: 30rpx;
  195. color: #060809;
  196. display: flex;
  197. align-items: center;
  198. &::after {
  199. content: "";
  200. width: 28rpx;
  201. height: 28rpx;
  202. margin-left: 12rpx;
  203. background: url('https://qiniu.bms16.com/FtGhNkwKlhR7hOZsaj0gmRl9KjPx');
  204. background-size: 100%;
  205. }
  206. &.hide-arrow {
  207. &::after {
  208. display: none;
  209. }
  210. }
  211. }
  212. }
  213. }
  214. .logout-btn {
  215. color: #FA2918;
  216. background: #E4E7EC;
  217. }
  218. }
  219. </style>