登录修复

dev_202412
yujialong 4 months ago
parent 54ef52797e
commit 34ba538cdb
  1. 10
      src/pages/account/login/index.vue

@ -659,7 +659,11 @@ export default {
if (list && list.length) { if (list && list.length) {
list.map(e => { list.map(e => {
const { userName } = e const { userName } = e
if (userName.length > 1) e.userName = userName[0] + '*' + userName.substring(2) if (userName) {
if (userName.length > 1) e.userName = userName[0] + '*' + userName.substring(2)
} else {
e.userName = ''
}
}) })
this.infos = list this.infos = list
this.accountIds = list.map(e => e.id) this.accountIds = list.map(e => e.id)
@ -746,9 +750,9 @@ export default {
account, account,
schoolId, schoolId,
accountId: this.curUser.id || '', accountId: this.curUser.id || '',
}).then(({ token }) => { }).then(({ token, type }) => {
this.token = token this.token = token
this.setLogin() type === 1 ? this.setLogin() : this.toMang()
}).catch(res => { }) }).catch(res => { })
} else { } else {
this.unbind() this.unbind()

Loading…
Cancel
Save