登录界面:姐姐点击登录后界面疯狂闪动的问题

(cherry picked from commit a79f1452b3)
This commit is contained in:
puhui999 2023-09-09 14:27:48 +08:00 committed by shizhong
parent ca0ec86913
commit 3f0ec5cf16

View File

@ -231,6 +231,7 @@ const getCookie = () => {
}
}
}
const loading = ref() // ElLoading.service
//
const handleLogin = async (params) => {
loginLoading.value = true
@ -245,7 +246,7 @@ const handleLogin = async (params) => {
if (!res) {
return
}
ElLoading.service({
loading.value = ElLoading.service({
lock: true,
text: '正在加载系统中...',
background: 'rgba(0, 0, 0, 0.7)'
@ -265,13 +266,9 @@ const handleLogin = async (params) => {
} else {
push({ path: redirect.value || permissionStore.addRouters[0].path })
}
} catch {
loginLoading.value = false
} finally {
setTimeout(() => {
const loadingInstance = ElLoading.service()
loadingInstance.close()
}, 400)
loginLoading.value = false
loading.value.close()
}
}