fix: fix getUserInfo by cookie bug

This commit is contained in:
Pan
2017-10-25 17:12:36 +08:00
parent 87a44ae7f5
commit 76f4017470
3 changed files with 6 additions and 1 deletions

View File

@@ -63,6 +63,9 @@ const user = {
GetUserInfo({ commit, state }) {
return new Promise((resolve, reject) => {
getUserInfo(state.token).then(response => {
if (!response.data) { // 由于mockjs 不支持自定义状态码只能这样hack
reject('error')
}
const data = response.data
commit('SET_ROLES', data.role)
commit('SET_NAME', data.name)