set.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <template>
  2. <view class="set-page zx-container">
  3. <image @click="editAvatarFn" :src="userInfo.headimg || defaultHeadImg" class="head-img" />
  4. <view class="list-wrap">
  5. <view
  6. v-for="(item, index) in list"
  7. :key="index"
  8. class="item"
  9. @tap="routerLink(item.url)"
  10. >
  11. <view class="title">{{ item.title }}</view>
  12. <view :class="['text-right', item.hideArrow && 'hide-arrow']">
  13. <view v-if="item.textProp == 'registrationTime'"> {{ formatTimestamp(userInfo.ctime) }}</view>
  14. <input class="inp" @blur="inpfn" v-if="item.textProp == 'nickname'" v-model="userInfo[item.textProp]" type="text" />
  15. <!-- <view v-if="item.textProp == 'registrationTime'"" class="title">{{ userInfo[item.textProp] }}1</view> -->
  16. <block v-else>
  17. {{ userInfo[item.textProp] || '' }}
  18. </block>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="zx-form-btn fix-bottom-btn logout-btn" @tap="handleQuit">退出登录</view>
  23. </view>
  24. </template>
  25. <script>
  26. const storage = require('@/common/storage.js')
  27. import { QINIU_URL, defaultHeadImg } from '@/common/constant'
  28. var config = require('../../common/config_gyq.js');
  29. var http = require('../../common/request');
  30. const common = require('../../common/common.js');
  31. export default {
  32. data() {
  33. return {
  34. QINIU_URL,
  35. defaultHeadImg,
  36. userInfo: {},
  37. list: [
  38. { title: '昵称', url: '', textProp: 'nickname' },
  39. { title: '注册时间', textProp: 'registrationTime', hideArrow: true },
  40. { title: '修改密码', url: '/pages/loginRegister/changePassword' },
  41. { title: '关于我们', url: '/pages/aboutMy/aboutMy', textProp: 'version' },
  42. { title: '隐私协议', url: '/pages/contract/contract?contract_id=270' },
  43. { title: '用户条款', url: '/pages/contract/contract?contract_id=102' }
  44. ]
  45. }
  46. },
  47. onShow() {
  48. const user_token = storage.getUserToken()
  49. user_token && this.loadUserInfo()
  50. },
  51. methods: {
  52. formatTimestamp(timestamp) {
  53. const date = new Date(timestamp * 1000);
  54. return date.toLocaleDateString('zh-CN'); // 本地化格式(如:2021/5/3)
  55. },
  56. inpfn(e){
  57. console.log(e.detail.value)
  58. this.editUserInfoFn()
  59. },
  60. editAvatarFn(){
  61. let _this = this
  62. common.upLoadImgQiNiu((imgUrl)=> {
  63. _this.userInfo.headimg = imgUrl
  64. _this.editUserInfoFn()
  65. });
  66. },
  67. async editUserInfoFn(){
  68. let {data} = await http.postApi(config.API_USER_MODIFY_USER_INFO,{
  69. nickname:this.userInfo.nickname,
  70. head_img:this.userInfo.headimg,
  71. })
  72. storage.setUserInfoData(this.userInfo)
  73. },
  74. loadUserInfo() {
  75. const userInfo = storage.getUserInfoData()
  76. this.setData({ userInfo })
  77. },
  78. routerLink(url) {
  79. uni.navigateTo({ url })
  80. },
  81. handleQuit() {
  82. uni.showModal({
  83. title: '提示',
  84. content: '您确定要退出当前账号吗?',
  85. showCancel: true,
  86. cancelText: '取消',
  87. confirmText: '确定',
  88. success: function(res) {
  89. if (res.confirm) {
  90. storage.clearStorage()
  91. uni.reLaunch({
  92. url: '/pages/index/index'
  93. })
  94. }
  95. }
  96. })
  97. }
  98. }
  99. }
  100. </script>
  101. <style lang="scss">
  102. @import "@/libs/css/layout.scss";
  103. .inp{
  104. font-size: 30rpx;
  105. color: #060809;
  106. text-align: right;
  107. }
  108. .set-page {
  109. display: flex;
  110. flex-direction: column;
  111. align-items: center;
  112. padding: 66rpx 32rpx 48rpx;
  113. .head-img {
  114. width: 174rpx;
  115. height: 174rpx;
  116. margin: 0 auto 40rpx;
  117. border-radius: 50%;
  118. }
  119. .list-wrap {
  120. width: 100%;
  121. background: #FFFFFF;
  122. border-radius: 40rpx;
  123. padding: 8rpx 32rpx;
  124. .item {
  125. padding: 40rpx 0;
  126. display: flex;
  127. justify-content: space-between;
  128. border-bottom: 2px solid #F1F4F5;
  129. &:last-child {
  130. border-bottom: 0;
  131. }
  132. .title {
  133. font-family: PingFangSC, PingFang SC;
  134. font-weight: bold;
  135. font-size: 32rpx;
  136. color: #060809;
  137. }
  138. .text-right {
  139. font-family: Futura, Futura;
  140. font-weight: 500;
  141. font-size: 30rpx;
  142. color: #060809;
  143. display: flex;
  144. align-items: center;
  145. &::after {
  146. content: "";
  147. width: 28rpx;
  148. height: 28rpx;
  149. margin-left: 12rpx;
  150. background: url('https://qiniu.bms16.com/FtGhNkwKlhR7hOZsaj0gmRl9KjPx');
  151. background-size: 100%;
  152. }
  153. &.hide-arrow {
  154. &::after {
  155. display: none;
  156. }
  157. }
  158. }
  159. }
  160. }
  161. .logout-btn {
  162. color: #FA2918;
  163. background: #E4E7EC;
  164. }
  165. }
  166. </style>