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

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
+10
View File
@@ -4,6 +4,7 @@ import store from '../store'
import { Message } from 'element-ui'
Vue.use(Router)
const routes = [
// 手机端链接,中转页面
{
path: '/phoneIndex',
name: 'phoneIndex',
@@ -13,6 +14,15 @@ const routes = [
title: '动态跳转',
}
},
{
path: '/blankPage',
name: 'blankPage',
component: resolve => require(['@/pages/blankPage/index.vue'], resolve),
meta: {
requireAuth: true,
title: '手机提示页面',
}
},
{
path: '*',
redirect: '/loginVerify'