userForm: {
name:'',
username: '',
gender: '',
birthday: '',
email: '',
mobile: '',
image:''
},
handleAvatarSuccess(res, file) {
this.userForm.image = URL.createObjectURL(file.raw);
},
之后就是updateuserinfo函数了:
updateUserInfo(that.userForm).then((response)=> {
//
})