set.vue 5.2 KB

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