set.vue 5.1 KB

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