🐛 异常处理
This commit is contained in:
parent
a2f72f6d0a
commit
9147962fde
@ -10,7 +10,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-link target="_blank" :href="'/user/' + user.account" class="text-default">
|
<el-link target="_blank" :href="'/user/' + user.account" class="text-default">
|
||||||
<span style="font-size: 20px;font-weight: bold;">{{ user.nickname }}</span>
|
<span style="font-size: 20px;font-weight: bold;" v-html="user.nickname"></span>
|
||||||
</el-link>
|
</el-link>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24" style="padding: 1rem 0;">
|
<el-col :span="24" style="padding: 1rem 0;">
|
||||||
|
@ -83,17 +83,9 @@ export default {
|
|||||||
_ts.$refs.user.validate(async (valid) => {
|
_ts.$refs.user.validate(async (valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
_ts.$set(_ts, 'loginLoading', true);
|
_ts.$set(_ts, 'loginLoading', true);
|
||||||
setTimeout(function () {
|
|
||||||
_ts.$set(_ts, 'loginLoading', false);
|
|
||||||
}, 10000);
|
|
||||||
|
|
||||||
|
|
||||||
let fingerprint = _ts.$store.state.fingerprint;
|
|
||||||
|
|
||||||
let data = {
|
let data = {
|
||||||
account: _ts.user.account,
|
account: _ts.user.account,
|
||||||
password: _ts.user.password,
|
password: _ts.user.password
|
||||||
fingerprint: fingerprint
|
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
let response = await _ts.$auth.loginWith('local', {data: data})
|
let response = await _ts.$auth.loginWith('local', {data: data})
|
||||||
@ -107,7 +99,9 @@ export default {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
_ts.$set(_ts, 'loginLoading', false);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
_ts.$set(_ts, 'loginLoading', false);
|
||||||
console.log(err)
|
console.log(err)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user