pc端跳转取消loading

This commit is contained in:
zyn
2023-07-21 09:39:17 +08:00
parent e9c883b820
commit 199db218af
+15 -10
View File
@@ -73,15 +73,20 @@ router.beforeEach(function (to, from, next) {
// const endUrl = currentURL.slice(index + 2)
// window.location.href = startUrl + endUrl
// }
let loading = Loading.service({
text: '加载中...',
background: '#fff'
});
closeLoading()
if (isMobile()){
var loading = Loading.service({
text: '加载中...',
background: '#fff'
});
}
function closeLoading(){
setTimeout(() => {
loading.close()
loading = null
}, 3000)
if (loading) {
setTimeout(() => {
loading.close()
loading = null
}, 3000)
}
}
let fromName = from.name
if(fromName === undefined || fromName === null){
@@ -261,7 +266,7 @@ router.beforeEach(function (to, from, next) {
closeLoading()
}else {
console.log('-bussLibrary4-')
console.log('-pc端-')
extractedVerify()
}
}
@@ -281,7 +286,7 @@ router.beforeEach(function (to, from, next) {
closeLoading()
}
}else {
console.log('-phoneBussLibrary4-')
console.log('-phone-')
next()
closeLoading()
}