userinfo.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <template>
  2. <view class="userinfo">
  3. <view class="user-head u-flex u-row-between">
  4. <text>头像</text>
  5. <image :src="userinfo.avatar" mode="aspectFill" @click="uploadimg"></image>
  6. </view>
  7. <view class="user-item">
  8. <view class="item-name">
  9. 昵称
  10. </view>
  11. <view class="item-input u-flex">
  12. <input type="text" placeholder="请输入昵称" :disabled="true" v-model="userinfo.name">
  13. </view>
  14. </view>
  15. <view class="user-item">
  16. <view class="item-name">
  17. 简介
  18. </view>
  19. <view class="item-input u-flex">
  20. <input type="text" placeholder="添加简介" :disabled="true" v-model="jianjie">
  21. </view>
  22. </view>
  23. <view style="height: 150rpx;"></view>
  24. <view class="safe-area-inset-bottom"></view>
  25. <view class="user-down">
  26. <view class="down-btn u-flex">
  27. <text @click="save">保存</text>
  28. </view>
  29. <view class="safe-area-inset-bottom"></view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. // import fuxing from "../common/fuxing.js"
  35. import {
  36. index
  37. } from "../units/inquire.js"
  38. export default {
  39. data() {
  40. return {
  41. userinfo: {},
  42. jianjie: '',
  43. }
  44. },
  45. onLoad() {
  46. this.getuser()
  47. },
  48. methods: {
  49. save() {
  50. if (!this.userinfo.avatar) {
  51. this.$u.toast("请上传头像")
  52. return
  53. }
  54. if (!this.userinfo.name) {
  55. this.$u.toast("请输入昵称")
  56. return
  57. }
  58. if (!this.jianjie) {
  59. this.$u.toast("请输入简介")
  60. return
  61. }
  62. uni.showLoading({
  63. mask: true,
  64. title: "请稍后"
  65. })
  66. },
  67. uploadimg() {
  68. uni.chooseImage({
  69. count: 1,
  70. success: (img) => {
  71. uni.showLoading({
  72. mask: true,
  73. title: "请稍后"
  74. })
  75. uni.uploadFile({
  76. url: 'https://hire.hdlkeji.com' + '/api/common/upload',
  77. filePath: img.tempFilePaths[0],
  78. name: 'file',
  79. success: (res) => {
  80. uni.hideLoading()
  81. if (JSON.parse(res.data).code == 1) {
  82. this.userinfo.avatar = JSON.parse(res.data).data.fullurl
  83. } else {
  84. this.$u.toast(JSON.parse(res.data).msg)
  85. }
  86. },
  87. fail: (e) => {
  88. console.log(e);
  89. }
  90. })
  91. }
  92. })
  93. },
  94. getuser() {
  95. index().then(res => {
  96. this.userinfo = res.data.group_info
  97. this.jianjie = res.data.group_info.name
  98. })
  99. },
  100. }
  101. }
  102. </script>
  103. <style lang="scss">
  104. .userinfo {
  105. padding: 0 32rpx;
  106. .user-down {
  107. position: fixed;
  108. bottom: 0;
  109. left: 0;
  110. z-index: 99;
  111. width: 750rpx;
  112. background-color: #fff;
  113. .down-btn {
  114. padding: 8rpx 32rpx;
  115. text {
  116. line-height: 88rpx;
  117. background: #0C66C2;
  118. border-radius: 12rpx;
  119. width: 100%;
  120. font-size: 32rpx;
  121. font-family: PingFangSC-Medium, PingFang SC;
  122. font-weight: 500;
  123. color: #FFFFFF;
  124. text-align: center;
  125. }
  126. }
  127. }
  128. .user-item {
  129. padding-top: 30rpx;
  130. border-bottom: 2rpx solid #F0F0F0;
  131. .item-input {
  132. height: 100rpx;
  133. input {
  134. height: 100rpx;
  135. flex: 1;
  136. }
  137. }
  138. .item-name {
  139. font-size: 26rpx;
  140. font-family: PingFangSC-Regular, PingFang SC;
  141. font-weight: 400;
  142. color: #888888;
  143. }
  144. }
  145. .user-head {
  146. padding: 32rpx 0;
  147. border-bottom: 2rpx solid #F0F0F0;
  148. text {
  149. font-size: 32rpx;
  150. font-family: PingFangSC-Regular, PingFang SC;
  151. font-weight: 400;
  152. color: #222222;
  153. }
  154. image {
  155. border-radius: 100%;
  156. width: 120rpx;
  157. height: 120rpx;
  158. }
  159. }
  160. }
  161. </style>