userinfo.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <u-cell-group :border="false">
  5. <u-cell title="头像" size="large">
  6. <view class="value" slot="value">
  7. <image :src="user.avatar" mode="aspectFill" @click="toavatar"></image>
  8. </view>
  9. </u-cell>
  10. <u-cell title="昵称" size="large" :value="user.username">
  11. <view class="value" slot="value">
  12. <u-input v-model="user.username" border="none" inputAlign="right"
  13. placeholder="请您输入内容"></u-input>
  14. </view>
  15. </u-cell>
  16. <u-cell title="个人简介" size="large" :border="false" :isLink="true" @click="show_intro = true">
  17. <view class="value text_hide" slot="value" style="max-width: 350rpx;">
  18. <text class="text_hide" style="max-width: 200rpx;">{{user.introduction || '介绍一下自己!'}}</text>
  19. </view>
  20. </u-cell>
  21. </u-cell-group>
  22. </view>
  23. <view class="box">
  24. <view class="title hflex aend">
  25. <text>更多信息</text>
  26. <text>完善信息可以获得更多积分</text>
  27. </view>
  28. <u-cell-group :border="false">
  29. <u-cell :title="item.name" size="large" v-for="(item,index) in list" :key="index">
  30. <view class="value" slot="value">
  31. <u-input v-model="item.value" border="none" inputAlign="right" placeholder="请您输入内容"></u-input>
  32. </view>
  33. </u-cell>
  34. </u-cell-group>
  35. </view>
  36. <view class="bottom">
  37. <view class="btn" @click="save">保存</view>
  38. </view>
  39. <u-popup :show="show_intro" @close="toclose" mode="bottom" :round="14">
  40. <view class="popu">
  41. <view class="top hflex acenter jbetween">
  42. <view></view>
  43. <view class="title">编辑个人简介</view>
  44. <u-icon name="close" color="#999" size="18" @click="toclose"></u-icon>
  45. </view>
  46. <view class="text">
  47. <u-textarea v-model="user.introduction" height="150" :autoHeight="true" placeholder="介绍一下自己!" count
  48. maxlength="70" border="none"></u-textarea>
  49. </view>
  50. <view class="btn" :class="user.introduction != '' ? '' : 'btn2'" @click="save">保存</view>
  51. </view>
  52. </u-popup>
  53. </view>
  54. </template>
  55. <script>
  56. import $api from '@/static/js/api.js'
  57. export default {
  58. data() {
  59. return {
  60. user: {},
  61. list: [],
  62. show_intro: false
  63. }
  64. },
  65. onLoad() {
  66. this.getuser()
  67. this.getlist()
  68. },
  69. methods: {
  70. save() {
  71. var that = this
  72. let data = {
  73. username: that.user.username,
  74. avatar: that.user.avatar,
  75. introduction: that.user.introduction
  76. }
  77. let list = []
  78. for (var i = 0; i < that.list.length; i++) {
  79. data[that.list[i].column_id] = that.list[i].value;
  80. }
  81. $api.req({
  82. url: 'user',
  83. method: 'PUT',
  84. data: data
  85. }, function(res) {
  86. $api.info(res.msg)
  87. that.toclose()
  88. setTimeout(() => {
  89. that.getuser()
  90. }, 1000)
  91. })
  92. },
  93. toavatar() {
  94. var _this = this
  95. uni.chooseImage({
  96. success: (chooseImageRes) => {
  97. uni.showLoading({
  98. title: '上传中'
  99. })
  100. const tempFilePaths = chooseImageRes.tempFilePaths;
  101. uni.uploadFile({
  102. url: $api.config.baseUrl + 'upload/image', //仅为示例,非真实的接口地址
  103. filePath: tempFilePaths[0],
  104. name: 'image',
  105. formData: {
  106. 'user': 'test'
  107. },
  108. success: (uploadFileRes) => {
  109. var data = JSON.parse(uploadFileRes.data)
  110. _this.user.avatar = data.data.url
  111. uni.hideLoading()
  112. }
  113. });
  114. }
  115. });
  116. },
  117. toclose() {
  118. this.show_intro = false
  119. },
  120. getlist() {
  121. var _this = this
  122. $api.req({
  123. url: 'user/extra',
  124. }, function(res) {
  125. _this.list = res.data
  126. })
  127. },
  128. getuser() {
  129. var _this = this
  130. $api.req({
  131. url: 'user/info',
  132. method: 'GET'
  133. }, function(res) {
  134. if (res.code == 10000) {
  135. _this.user = res.data
  136. if (!_this.user.introduction) {
  137. _this.user.introduction = ''
  138. }
  139. }
  140. })
  141. },
  142. }
  143. }
  144. </script>
  145. <style lang="scss">
  146. .content::v-deep {
  147. background: #F4F4F4;
  148. .popu {
  149. padding: 40rpx 28rpx;
  150. .top {
  151. width: 100%;
  152. .title {
  153. font-size: 36rpx;
  154. font-family: PingFangSC, PingFang SC;
  155. font-weight: 600;
  156. color: #333333;
  157. }
  158. }
  159. .btn {
  160. margin: 48rpx 0 0;
  161. width: 694rpx;
  162. height: 88rpx;
  163. background: #00B0B0;
  164. border-radius: 44rpx;
  165. font-size: 36rpx;
  166. font-family: PingFangSC, PingFang SC;
  167. font-weight: 500;
  168. color: #FFFFFF;
  169. text-align: center;
  170. line-height: 88rpx;
  171. }
  172. .btn2 {
  173. opacity: 0.4;
  174. }
  175. .text {
  176. margin: 38rpx 0 0;
  177. width: 694rpx;
  178. height: 346rpx;
  179. background: #F4F4F4;
  180. border-radius: 20rpx;
  181. box-sizing: border-box;
  182. padding: 32rpx 24rpx;
  183. .u-textarea {
  184. width: 100%;
  185. height: 100%;
  186. padding: 0;
  187. background: #F4F4F4;
  188. text {
  189. background: #f4f4f4 !important;
  190. }
  191. }
  192. }
  193. }
  194. .bottom {
  195. position: fixed;
  196. bottom: 0;
  197. left: 0;
  198. width: 750rpx;
  199. height: 166rpx;
  200. background: #FFFFFF;
  201. box-sizing: border-box;
  202. padding: 16rpx 24rpx 66rpx;
  203. .btn {
  204. width: 100%;
  205. height: 84rpx;
  206. background: #00B0B0;
  207. border-radius: 42rpx;
  208. font-size: 32rpx;
  209. font-family: PingFangSC, PingFang SC;
  210. font-weight: 500;
  211. color: #FFFFFF;
  212. line-height: 84rpx;
  213. text-align: center;
  214. }
  215. }
  216. .box {
  217. width: 100%;
  218. background: #FFFFFF;
  219. box-sizing: border-box;
  220. padding: 28rpx 28rpx;
  221. margin: 0 0 20rpx;
  222. .value {
  223. image {
  224. width: 100rpx;
  225. height: 100rpx;
  226. border-radius: 50%;
  227. }
  228. input {}
  229. text {
  230. width: 450rpx;
  231. }
  232. }
  233. .title {
  234. text:first-child {
  235. font-size: 32rpx;
  236. font-family: PingFangSC, PingFang SC;
  237. font-weight: 600;
  238. color: #333333;
  239. }
  240. text:last-child {
  241. font-size: 24rpx;
  242. font-family: PingFangSC, PingFang SC;
  243. font-weight: 400;
  244. color: #999999;
  245. padding: 0 0 0 32rpx;
  246. }
  247. }
  248. }
  249. .u-cell__title {
  250. white-space: nowrap;
  251. }
  252. }
  253. </style>