手机端没有的页面跳转到空白页面

This commit is contained in:
shenyanpei
2021-12-19 11:29:28 +08:00
parent d7531630ad
commit d90d1310b4
13 changed files with 69 additions and 818 deletions
+5 -1
View File
@@ -276,7 +276,11 @@ router.beforeEach(function (to, from, next) {
}
if(path === '/loginVerify'){
if(webLoginType != null && webLoginType === 'dev'){
next('/Login')
if(isMobile()) {
next('/blankPage')
} else {
next('/Login')
}
}else {
next()
}