Compare commits

...

1 Commits

Author SHA1 Message Date
花裤衩 8d81c98539 perf[getInfo]: stop run after reject 2020-06-26 18:41:35 +08:00
1 changed files with 2 additions and 2 deletions

View File

@ -51,14 +51,14 @@ const actions = {
const { data } = response const { data } = response
if (!data) { if (!data) {
reject('Verification failed, please Login again.') return reject('Verification failed, please Login again.')
} }
const { roles, name, avatar, introduction } = data const { roles, name, avatar, introduction } = data
// roles must be a non-empty array // roles must be a non-empty array
if (!roles || roles.length <= 0) { if (!roles || roles.length <= 0) {
reject('getInfo: roles must be a non-null array!') return reject('getInfo: roles must be a non-null array!')
} }
commit('SET_ROLES', roles) commit('SET_ROLES', roles)