index.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <template>
  2. <view class="content">
  3. <view class="user-info" @click="upLoadImg" style="display: inherit;">
  4. <view class="avatar-name">
  5. 头像
  6. </view>
  7. <view style="display: flex;">
  8. <view class="avatar">
  9. <image :src="userInfos.headimg"></image>
  10. </view>
  11. <view class="texts">
  12. 修改头像
  13. </view>
  14. <view class="rightIcon">
  15. <image src="../../static/index/mine-icon1.png"></image>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="user-info" style="display: inherit;">
  20. <view>昵称</view>
  21. <view class="user-name">
  22. <input @input="getUserName" v-model="userInfos.name" />
  23. </view>
  24. </view>
  25. <view class="submit" @click="updateUserInfo">确定</view>
  26. </view>
  27. </template>
  28. <script>
  29. import __config from 'config/env';
  30. import api from 'utils/api'
  31. import wybNoticeBar from '@/components/wyb-noticeBar/wyb-noticeBar.vue'
  32. import navBar from '@/components/nav-bar/nav-bar.vue'
  33. export default {
  34. components:{wybNoticeBar,navBar},
  35. data() {
  36. return {
  37. userInfos:{
  38. "name":"",
  39. "headimg":"",
  40. },
  41. }
  42. },
  43. onLoad() {
  44. },
  45. onShow() {
  46. this.getUserInfo();
  47. },
  48. methods: {
  49. getUserName(e){
  50. this.userInfos.name=e.detail.value
  51. },
  52. upLoadImg(){
  53. let that=this;
  54. let _url = __config.basePath + '/api/upload/upload'
  55. uni.chooseImage({
  56. success: (chooseImageRes) => {
  57. const tempFilePaths = chooseImageRes.tempFilePaths;
  58. uni.uploadFile({
  59. url: _url,
  60. filePath: tempFilePaths[0],
  61. file: tempFilePaths[0],
  62. name: 'file',
  63. success: (res) => {
  64. let _res=JSON.parse(res.data)
  65. if(_res.code==1){
  66. this.$set(that.userInfos,"headimg",_res.data)
  67. }
  68. }
  69. });
  70. }
  71. });
  72. },
  73. getUserInfo(){
  74. api.getUserInfo().then((res)=>{
  75. if(res.code==1){
  76. this.userInfos.name=res.data.detail.name
  77. this.userInfos.headimg=res.data.detail.headimg
  78. }
  79. })
  80. },
  81. updateUserInfo(){
  82. let data={
  83. "name":this.userInfos.name,
  84. "headimg":this.userInfos.headimg
  85. }
  86. api.updateUserInfo(data).then((res)=>{
  87. if(res.code==1){
  88. uni.showToast({
  89. icon:"none",
  90. title:"修改成功",
  91. duration:2000,
  92. success() {
  93. setTimeout(()=>{
  94. uni.navigateTo({
  95. url:"/pages/mine/index"
  96. })
  97. },2000)
  98. }
  99. })
  100. }
  101. })
  102. },
  103. }
  104. }
  105. </script>
  106. <style lang="scss">
  107. .submit{
  108. color: #fff;
  109. font-size: 32rpx;
  110. width: 320rpx;
  111. height: 64rpx;
  112. line-height: 64rpx;
  113. text-align: center;
  114. background: #222222;
  115. border-radius: 16rpx;
  116. margin: 120rpx auto;
  117. }
  118. .avatar-name{
  119. color: #222;
  120. font-size: 28rpx;
  121. margin-left: 20rpx;
  122. margin-bottom: 25rpx;
  123. }
  124. .user-info{
  125. border-radius: 16rpx;
  126. width: 630rpx;
  127. // height: 140rpx;
  128. background-color: #fff;
  129. display: flex;
  130. margin: 20rpx auto;
  131. padding: 30rpx;
  132. position: relative;
  133. .user-name{
  134. background: #F1F1F1;
  135. border-radius: 16rpx;
  136. height: 56rpx;
  137. line-height: 56rpx;
  138. width: 650rpx;
  139. margin: 20rpx 0 0 0;
  140. input{
  141. font-size: 28rpx;
  142. height: 56rpx;
  143. line-height: 56rpx;
  144. padding-left: 15rpx;
  145. }
  146. }
  147. .user-views{
  148. flex: 1;
  149. text-align: center;
  150. .name{
  151. color: #222;
  152. font-size: 28rpx;
  153. margin-top: 5rpx;
  154. }
  155. .icons{
  156. image{
  157. width: 60rpx;
  158. height: 60rpx;
  159. }
  160. }
  161. }
  162. .texts{
  163. position: absolute;
  164. right: 100rpx;
  165. top: 125rpx;
  166. }
  167. .rightIcon{
  168. position: absolute;
  169. right: 30rpx;
  170. top: 125rpx;
  171. image{
  172. width: 40rpx;
  173. height: 40rpx;
  174. }
  175. }
  176. .user-s{
  177. margin: 20rpx 0 0 30rpx;
  178. }
  179. .avatar{
  180. image{
  181. width: 128rpx;
  182. height: 128rpx;
  183. border-radius: 50%;
  184. }
  185. }
  186. }
  187. .index-bottoms{
  188. margin-top: 15rpx;
  189. padding:0 30rpx;
  190. .shop-detail{
  191. padding-bottom: 180rpx;
  192. margin-bottom: 100rpx;
  193. .views{
  194. margin-top: 10rpx;
  195. display: flex;
  196. line-height: 30rpx;
  197. .texts{
  198. color: #222;
  199. font-size: 20rpx;
  200. margin-left: 10rpx;
  201. }
  202. .shop-icons{
  203. img{
  204. width: 24rpx;
  205. height: 24rpx;
  206. }
  207. }
  208. }
  209. }
  210. .shop-banner{
  211. img{
  212. width: 688rpx;
  213. height: 284rpx;
  214. border-radius: 16rpx;
  215. }
  216. }
  217. }
  218. .title-texts{
  219. color: #222;
  220. font-size: 20rpx;
  221. text-align: center;
  222. margin-top: 10rpx;
  223. }
  224. .titles{
  225. text-align: center;
  226. display: flex;
  227. justify-content: center;
  228. margin-top: 35rpx;
  229. .lines{
  230. width: 18rpx;
  231. height: 4rpx;
  232. background: #000000;
  233. border-radius: 4rpx;
  234. margin: 18rpx 20rpx 0 0;
  235. }
  236. .views{
  237. font-size: 28rpx;
  238. color: #222;
  239. }
  240. }
  241. .contents{
  242. }
  243. swiper{
  244. height: 328rpx;
  245. }
  246. .swiper{
  247. margin: 12rpx auto;
  248. text-align: center;
  249. }
  250. .swiper-img{
  251. width: 684rpx;
  252. height: 328rpx;
  253. text-align: center;
  254. border-radius: 16rpx;
  255. }
  256. </style>