This commit is contained in:
shizhong
2024-03-07 14:09:08 +08:00
parent 2438f65d9e
commit d1cfe78283
3 changed files with 33 additions and 17 deletions

View File

@ -277,7 +277,9 @@ const handleLogin = async (params) => {
}
} finally {
loginLoading.value = false
loading.value.close()
if (loading.value != null) {
loading.value.close();
}
}
}