set.vue 6.2 KB

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