|
|
@ -100,9 +100,11 @@ export default { |
|
|
|
this.logging = true |
|
|
|
this.logging = true |
|
|
|
const name = this.form.getFieldValue('name') |
|
|
|
const name = this.form.getFieldValue('name') |
|
|
|
const password = this.form.getFieldValue('password') |
|
|
|
const password = this.form.getFieldValue('password') |
|
|
|
// 登录 |
|
|
|
login(name, password).then(this.afterLogin) |
|
|
|
login(name, password) |
|
|
|
} |
|
|
|
.then((res) => { |
|
|
|
}) |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
afterLogin(res) { |
|
|
|
this.logging = false |
|
|
|
this.logging = false |
|
|
|
const result = res.data |
|
|
|
const result = res.data |
|
|
|
if (result.code >= 0) { |
|
|
|
if (result.code >= 0) { |
|
|
@ -113,9 +115,6 @@ export default { |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
this.error = result.message |
|
|
|
this.error = result.message |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|