set.vue 5.7 KB

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