123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- <template>
- <view class="content">
- <view class="user-info" @click="upLoadImg" style="display: inherit;">
- <view class="avatar-name">
- 头像
- </view>
- <view style="display: flex;">
- <view class="avatar">
- <image :src="userInfos.headimg"></image>
- </view>
- <view class="texts">
- 修改头像
- </view>
- <view class="rightIcon">
- <image src="../../static/index/mine-icon1.png"></image>
- </view>
- </view>
- </view>
-
- <view class="user-info" style="display: inherit;">
- <view>昵称</view>
- <view class="user-name">
- <input @input="getUserName" v-model="userInfos.name" />
- </view>
- </view>
- <view class="submit" @click="updateUserInfo">确定</view>
-
-
-
- </view>
- </template>
- <script>
- import __config from 'config/env';
- import api from 'utils/api'
- import wybNoticeBar from '@/components/wyb-noticeBar/wyb-noticeBar.vue'
- import navBar from '@/components/nav-bar/nav-bar.vue'
- export default {
- components:{wybNoticeBar,navBar},
- data() {
- return {
- userInfos:{
- "name":"",
- "headimg":"",
- },
- }
- },
- onLoad() {
-
- },
- onShow() {
- this.getUserInfo();
- },
- methods: {
- getUserName(e){
- this.userInfos.name=e.detail.value
- },
- upLoadImg(){
- let that=this;
- let _url = __config.basePath + '/api/upload/upload'
- uni.chooseImage({
- success: (chooseImageRes) => {
- const tempFilePaths = chooseImageRes.tempFilePaths;
- uni.uploadFile({
- url: _url,
- filePath: tempFilePaths[0],
- file: tempFilePaths[0],
- name: 'file',
- success: (res) => {
- let _res=JSON.parse(res.data)
- if(_res.code==1){
- this.$set(that.userInfos,"headimg",_res.data)
- }
- }
- });
- }
- });
- },
- getUserInfo(){
- api.getUserInfo().then((res)=>{
- if(res.code==1){
- this.userInfos.name=res.data.detail.name
- this.userInfos.headimg=res.data.detail.headimg
- }
- })
- },
- updateUserInfo(){
- let data={
- "name":this.userInfos.name,
- "headimg":this.userInfos.headimg
- }
- api.updateUserInfo(data).then((res)=>{
- if(res.code==1){
- uni.showToast({
- icon:"none",
- title:"修改成功",
- duration:2000,
- success() {
- setTimeout(()=>{
- uni.navigateTo({
- url:"/pages/mine/index"
- })
- },2000)
- }
- })
-
- }
- })
- },
- }
- }
- </script>
- <style lang="scss">
- .submit{
- color: #fff;
- font-size: 32rpx;
- width: 320rpx;
- height: 64rpx;
- line-height: 64rpx;
- text-align: center;
- background: #222222;
- border-radius: 16rpx;
- margin: 120rpx auto;
- }
- .avatar-name{
- color: #222;
- font-size: 28rpx;
- margin-left: 20rpx;
- margin-bottom: 25rpx;
- }
- .user-info{
- border-radius: 16rpx;
- width: 630rpx;
- // height: 140rpx;
- background-color: #fff;
- display: flex;
- margin: 20rpx auto;
- padding: 30rpx;
- position: relative;
- .user-name{
- background: #F1F1F1;
- border-radius: 16rpx;
- height: 56rpx;
- line-height: 56rpx;
- width: 650rpx;
- margin: 20rpx 0 0 0;
- input{
- font-size: 28rpx;
- height: 56rpx;
- line-height: 56rpx;
- padding-left: 15rpx;
- }
- }
- .user-views{
- flex: 1;
- text-align: center;
- .name{
- color: #222;
- font-size: 28rpx;
- margin-top: 5rpx;
- }
- .icons{
- image{
- width: 60rpx;
- height: 60rpx;
- }
- }
- }
- .texts{
- position: absolute;
- right: 100rpx;
- top: 125rpx;
- }
- .rightIcon{
- position: absolute;
- right: 30rpx;
- top: 125rpx;
- image{
- width: 40rpx;
- height: 40rpx;
- }
- }
- .user-s{
- margin: 20rpx 0 0 30rpx;
- }
- .avatar{
- image{
- width: 128rpx;
- height: 128rpx;
- border-radius: 50%;
- }
- }
- }
- .index-bottoms{
- margin-top: 15rpx;
- padding:0 30rpx;
- .shop-detail{
- padding-bottom: 180rpx;
- margin-bottom: 100rpx;
- .views{
- margin-top: 10rpx;
- display: flex;
- line-height: 30rpx;
- .texts{
- color: #222;
- font-size: 20rpx;
- margin-left: 10rpx;
- }
- .shop-icons{
- img{
- width: 24rpx;
- height: 24rpx;
- }
- }
- }
- }
- .shop-banner{
- img{
- width: 688rpx;
- height: 284rpx;
- border-radius: 16rpx;
- }
- }
- }
- .title-texts{
- color: #222;
- font-size: 20rpx;
- text-align: center;
- margin-top: 10rpx;
- }
- .titles{
- text-align: center;
- display: flex;
- justify-content: center;
- margin-top: 35rpx;
- .lines{
- width: 18rpx;
- height: 4rpx;
- background: #000000;
- border-radius: 4rpx;
- margin: 18rpx 20rpx 0 0;
- }
- .views{
- font-size: 28rpx;
- color: #222;
- }
- }
- .contents{
-
- }
- swiper{
- height: 328rpx;
- }
- .swiper{
- margin: 12rpx auto;
- text-align: center;
- }
- .swiper-img{
- width: 684rpx;
- height: 328rpx;
- text-align: center;
- border-radius: 16rpx;
- }
- </style>
|