|
@@ -3,8 +3,13 @@
|
|
|
<form @submit="formSubmit">
|
|
|
<view class='personal-data' :style="colorStyle">
|
|
|
<view class='list'>
|
|
|
- <view class="item avatar-area">
|
|
|
- <u-avatar :src="userInfo.avatar" style="margin: auto;" size="82" @click="albumClick" />
|
|
|
+ <view class="item avatar-area" >
|
|
|
+ <view class="avater_button_view">
|
|
|
+ <button class="avater_button" open-type="chooseAvatar" @chooseavatar="chooseavatar">
|
|
|
+ <u-avatar :src="userInfo.avatar" style="margin: auto;" size="82" />
|
|
|
+ </button>
|
|
|
+ </view>
|
|
|
+<!-- <u-avatar :src="userInfo.avatar" style="margin: auto;" size="82" @click="albumClick" />-->
|
|
|
<text class="help_info" selectable="false" space="false" decode="false">
|
|
|
点击修改头像
|
|
|
</text>
|
|
@@ -14,7 +19,7 @@
|
|
|
<view>昵称</view>
|
|
|
<view class='input'>
|
|
|
<!-- <text>{{ userInfo.realName }}</text> -->
|
|
|
- <input type='text' name='name' :value='userInfo.name' />
|
|
|
+ <input type="nickname" name='name' :value='userInfo.name' />
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class='item acea-row row-between-wrapper'>
|
|
@@ -236,6 +241,16 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
|
|
|
+ chooseavatar(e){
|
|
|
+ let _this = this;
|
|
|
+ console.log(e)
|
|
|
+ this.$util.weixinAvatarUpload(e.detail.avatarUrl,
|
|
|
+ function (res) {
|
|
|
+ _this.userInfo.avatar = res.data.link
|
|
|
+ console.log("上传文件成功+++++++++++++++++++",res)
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
/**
|
|
|
* 上传微信二维码
|
|
|
*/
|
|
@@ -464,6 +479,16 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
+ .avater_button_view{
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+ .avater_button{
|
|
|
+ width: 82px;
|
|
|
+ height: 82px;
|
|
|
+ border-radius: 41px;
|
|
|
+ }
|
|
|
.cartcolor {
|
|
|
color: var(--view-theme);
|
|
|
border: 1px solid var(--view-theme);
|