2022-04-06 16:08:26 +08:00
|
|
|
|
<template>
|
2022-04-21 00:01:24 +08:00
|
|
|
|
<view class="container">
|
|
|
|
|
<view class="user-info">
|
|
|
|
|
<view class="info-item">
|
|
|
|
|
<view class="label">头像:</view>
|
|
|
|
|
<view class="info" @click="handleAvatarClick">
|
|
|
|
|
<u-avatar size="60" :src="userInfo.avatar"></u-avatar>
|
|
|
|
|
<u-icon class="btn" name="arrow-right"></u-icon>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="info-item">
|
|
|
|
|
<view class="label">昵称:</view>
|
|
|
|
|
<view class="info">
|
|
|
|
|
<view class="value">{{ userInfo.nickname }}</view>
|
|
|
|
|
<u-icon class="btn" name="edit-pen"></u-icon>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="info-item">
|
|
|
|
|
<view class="label">手机:</view>
|
|
|
|
|
<view class="info">
|
|
|
|
|
<view class="value">{{ userInfo.mobile }}</view>
|
|
|
|
|
<u-icon class="btn" name="edit-pen"></u-icon>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2022-04-06 16:08:26 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-04-21 00:01:24 +08:00
|
|
|
|
import { getUserInfo, updateAvatar } from '../../common/api'
|
|
|
|
|
|
2022-04-16 22:04:02 +08:00
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2022-04-21 00:01:24 +08:00
|
|
|
|
userInfo: {
|
|
|
|
|
nickname: '',
|
|
|
|
|
avatar: '',
|
|
|
|
|
mobile: ''
|
|
|
|
|
},
|
|
|
|
|
avatarFiles: []
|
2022-04-16 22:04:02 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2022-04-21 00:01:24 +08:00
|
|
|
|
onLoad() {
|
|
|
|
|
this.loadUserInfoData()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
loadUserInfoData() {
|
|
|
|
|
getUserInfo()
|
|
|
|
|
.then(res => {
|
|
|
|
|
this.userInfo = res.data
|
|
|
|
|
})
|
|
|
|
|
.catch(err => {
|
|
|
|
|
//console.log(err)
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handleAvatarClick() {
|
|
|
|
|
uni.chooseImage({
|
|
|
|
|
success: chooseImageRes => {
|
|
|
|
|
const tempFilePaths = chooseImageRes.tempFilePaths
|
|
|
|
|
console.log(tempFilePaths)
|
|
|
|
|
updateAvatar(tempFilePaths[0])
|
|
|
|
|
.then(res => {
|
|
|
|
|
console.log(res)
|
|
|
|
|
})
|
|
|
|
|
.catch(err => {
|
|
|
|
|
//console.log(err)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-16 22:04:02 +08:00
|
|
|
|
}
|
2022-04-06 16:08:26 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
2022-04-21 00:01:24 +08:00
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.user-info {
|
|
|
|
|
.info-item {
|
|
|
|
|
padding: 20rpx 60rpx;
|
|
|
|
|
border-bottom: $custom-border-style;
|
|
|
|
|
@include flex-space-between;
|
|
|
|
|
.label {
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
.info {
|
|
|
|
|
@include flex-right;
|
|
|
|
|
.value {
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
.btn {
|
|
|
|
|
margin-left: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|