editMine.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. <template>
  2. <view class="content">
  3. <view class="edit">
  4. <view class="edit_p">修改资料</view>
  5. <view class="edit_a">
  6. <image :src="images ? images :'https://ldc365.cn/assets/static/moren.png'" class="edit_img" mode=""></image>
  7. <view class="edit_p1" @click="chooseImg">修改头像</view>
  8. <view class="edit_b">
  9. <view class="edit_p2">手机号</view>
  10. <view class="edit_p3">{{userinfo.mobile}}</view>
  11. </view>
  12. <view class="edit_b">
  13. <view class="edit_p2">昵称</view>
  14. <view class="edit_c" @click="inputDialogToggle">
  15. <input class="edit_p4" v-model="nickname"></input>
  16. <view class="edit_d">修改</view>
  17. </view>
  18. </view>
  19. <!-- 输入框示例 -->
  20. <uni-popup ref="nickname" type="dialog">
  21. <uni-popup-dialog ref="inputClose" mode="input" title="修改昵称" value="" :beforeClose="true" placeholder="请输入昵称" @confirm="dialogInputConfirm" @close="dialogClose"></uni-popup-dialog>
  22. </uni-popup>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. import uniPopup from "@/components/uni-popup/uni-popup.vue"
  29. import uniPopupDialog from "@/components/uni-popup-dialog/uni-popup-dialog.vue"
  30. export default {
  31. data() {
  32. return {
  33. images: '',
  34. userinfo: {},
  35. nickname: ''
  36. }
  37. },
  38. onLoad() {
  39. this.GetUser()
  40. },
  41. components: {
  42. uniPopup,
  43. uniPopupDialog
  44. },
  45. methods: {
  46. open() {
  47. this.$refs.popup.open('top')
  48. },
  49. close() {
  50. this.$refs.popup.close()
  51. },
  52. dialogInputConfirm(val) {
  53. uni.hideLoading()
  54. this.nickname = val
  55. // 关闭窗口后,恢复默认内容
  56. this.$refs.nickname.close()
  57. if (!this.nickname) {
  58. uni.showToast({
  59. title: '请输入昵称',
  60. icon: "none"
  61. });
  62. return
  63. }
  64. this.request('/user/profile', {
  65. nickname: this.nickname
  66. }, 'post').then(res => {
  67. uni.showToast({
  68. title: '修改成功',
  69. icon: "none"
  70. });
  71. });
  72. },
  73. inputDialogToggle() {
  74. this.$refs.nickname.open()
  75. },
  76. dialogClose() {
  77. this.$refs.nickname.close()
  78. },
  79. //获取用户信息
  80. GetUser() {
  81. this.request('/user/index', '', 'post').then(res => {
  82. this.userinfo = res.data
  83. this.images = res.data.avatar
  84. this.nickname = res.data.nickname
  85. });
  86. },
  87. //选择图片
  88. chooseImg() {
  89. var _this = this;
  90. uni.chooseImage({
  91. sourceType: ["camera", "album"], //拍摄照片或者相册中选取
  92. sizeType: "compressed", //照片类型(这里选择进行压缩)
  93. count: 1, //可以选中的最大数量为8张
  94. success: (res) => {
  95. res.tempFilePaths.forEach(items => {
  96. uni.showLoading({
  97. title: '正在上传中...'
  98. });
  99. uni.uploadFile({
  100. url: this.url + '/common/upload', //图片上传接口
  101. filePath: items,
  102. fileType: 'image',
  103. name: 'file',
  104. header: {
  105. "token": uni.getStorageSync('token')
  106. },
  107. success: (res) => {
  108. uni.hideLoading();
  109. _this.images = JSON.parse(res.data).data.url
  110. _this.request('/user/profile', {
  111. avatar: _this.images
  112. }, 'post').then(res => {
  113. uni.showToast({
  114. title: '上传成功',
  115. icon: "none"
  116. });
  117. });
  118. },
  119. fail: (err) => {
  120. uni.hideLoading();
  121. console.error(err);
  122. uni.showToast({
  123. title: '上传失败'
  124. });
  125. }
  126. });
  127. })
  128. }
  129. })
  130. },
  131. }
  132. }
  133. </script>
  134. <style lang="scss">
  135. page,
  136. .content {
  137. background-color: #F2F2F2;
  138. }
  139. .edit {
  140. width: 702rpx;
  141. margin: 30rpx auto;
  142. .edit_p {
  143. font-size: 30rpx;
  144. font-family: PingFang SC;
  145. font-weight: 600;
  146. line-height: 42rpx;
  147. color: #000000;
  148. opacity: 1;
  149. }
  150. .edit_a {
  151. width: 100%;
  152. background: #FFFFFF;
  153. opacity: 1;
  154. border-radius: 10rpx;
  155. padding: 32rpx 22rpx;
  156. box-sizing: border-box;
  157. margin-top: 30rpx;
  158. text-align: center;
  159. padding-bottom: 15rpx;
  160. .edit_img {
  161. width: 118rpx;
  162. height: 118rpx;
  163. background: rgba(0, 0, 0, 0);
  164. border-radius: 50%;
  165. opacity: 1;
  166. }
  167. .edit_p1 {
  168. font-size: 26rpx;
  169. font-family: PingFang SC;
  170. font-weight: 400;
  171. line-height: 36rpx;
  172. color: #FF0000;
  173. opacity: 1;
  174. margin-top: 15rpx;
  175. margin-bottom: 80rpx;
  176. }
  177. .edit_b {
  178. display: flex;
  179. justify-content: flex-start;
  180. align-items: center;
  181. margin: 35rpx auto;
  182. .edit_p2 {
  183. width: 100rpx;
  184. font-size: 30rpx;
  185. font-family: PingFang SC;
  186. font-weight: 400;
  187. color: #B5B5B5;
  188. opacity: 1;
  189. margin-right: 30rpx;
  190. text-align: left;
  191. }
  192. .edit_p3 {
  193. font-size: 30rpx;
  194. font-family: PingFang SC;
  195. font-weight: 500;
  196. color: #000000;
  197. opacity: 1;
  198. text-align: left;
  199. width: 580rpx;
  200. }
  201. .edit_c {
  202. display: flex;
  203. justify-content: space-between;
  204. align-items: center;
  205. width: 580rpx;
  206. .edit_p4 {
  207. font-size: 30rpx;
  208. font-family: PingFang SC;
  209. font-weight: 500;
  210. color: #000000;
  211. opacity: 1;
  212. text-align: left;
  213. }
  214. .edit_d {
  215. background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAaCAYAAABozQZiAAAAAXNSR0IArs4c6QAAAt5JREFUOE+NlE1oXFUYhp/33pnMOAabJlAUNT9QRyi4cuPGRVy4FFp14iJkMiHD0J1boYurlNKiRJqCEk2ZOyMaydqFCxfiTkRFUBRsGKMitKLItM2d8c69XznTTG3M77c8nOf5znk551MYNlcQr4B96nveqxsbG9eDIEg5QilsNG8CDwKpwWeW9KrDw8N/lEql5DBeYaPxEehFYAiIwb7wpGo+n//1MIFWV1dH/ezQFcEZSTkz6wFf+p4quVyudZBAZqZmszlqpsuI05IeMLPY4FvSZH5zc/NaEAROuKvkVpxgbW1trBv3ljzptMvACYAfLE3Kk5OTP05PT+8S9GFXQRB44+PjY/L9N4XcFYbvCuwnwXyn0/m+Vqs54b26B98v8Hz/EnhnwB7aDvFnT5qPoui7+wU74J0nyFx0IQLHAHfka6moxFH0zUCwCx4IisXiaDeOL4l+BiNOYGa/eKLcarW+DoLg3z3hgWBqauq4mS4gXgKOAwlmm2DlQqHw1b7wQPDYqVMjmU7nvKU2I8kJUrDfBDMHwgPBxMTECclbAmaQPBei0PuHwsvLy7nCyMgTGWMdeBJwTIRx7kC4Xq/nfd8/mRofA0UgY2YOvOL7WtoXdqCXyxUt7jnwpAOBLYzlOO5erlarN/aEHUg2+xS95ENJk9vgLSx9O47jd6rV6nWXxy7YgZKeRl4IONAHblpqb/m+Vubm5m4M3ucOuN8xk3mGxK5KjA9ALL0YRd7Vs2f/A3d0dqkeGxt71nrJe5IeNzMf1MY4n6ZxY2Fh4c///8l+5/X19aHb3e5zSm0FeBTwzKwt7HVJzXK5/Nee/9mBURQ9b+hd4BEHgrUN3kjiOFxcXPx7v1mmMPzgBdTveOJugNY2KSBJwkql8s9BQ1Bh2GghuXDcFVyq57JZvzE7O9s+wvRs/g48vP0AXisU8o1SqXTrMLCfdr3efFk+00ifd7e2PqnValtHAd2eO0rLRREIfTTIAAAAAElFTkSuQmCC')no-repeat center right;
  216. background-size: 13rpx 21rpx;
  217. font-size: 26rpx;
  218. font-family: PingFang SC;
  219. font-weight: 500;
  220. color: #B5B5B5;
  221. opacity: 1;
  222. padding-right: 30rpx;
  223. line-height: 45rpx;
  224. min-width: 5em;
  225. }
  226. }
  227. }
  228. }
  229. }
  230. </style>