1.beautify user avatar image and show nickname

This commit is contained in:
supine-win
2022-06-11 06:01:53 +08:00
parent 1895a9e809
commit 98f2722781
3 changed files with 19 additions and 5 deletions

View File

@ -8,6 +8,7 @@ const getters = {
token: state => state.user.token,
avatar: state => state.user.avatar,
name: state => state.user.name,
nickname: state => state.user.nickname,
introduction: state => state.user.introduction,
roles: state => state.user.roles,
permissions: state => state.user.permissions,

View File

@ -17,6 +17,9 @@ const user = {
SET_NAME: (state, name) => {
state.name = name
},
SET_NICKNAME: (state, nickname) => {
state.nickname = nickname
},
SET_AVATAR: (state, avatar) => {
state.avatar = avatar
},
@ -109,7 +112,8 @@ const user = {
user: {
id: '',
avatar: '',
userName: ''
userName: '',
nickname: ''
}
}
}
@ -126,6 +130,7 @@ const user = {
}
commit('SET_ID', user.id)
commit('SET_NAME', user.userName)
commit('SET_NICKNAME', user.nickname)
commit('SET_AVATAR', avatar)
resolve(res)
}).catch(error => {