|
@@ -17,7 +17,8 @@ const remainingRouter = [
|
|
name: 'login',
|
|
name: 'login',
|
|
meta: {
|
|
meta: {
|
|
hidden: true,
|
|
hidden: true,
|
|
- title: '登录/注册'
|
|
|
|
|
|
+ title: '登录/注册',
|
|
|
|
+ noLogin: true
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{
|
|
{
|
|
@@ -29,7 +30,8 @@ const remainingRouter = [
|
|
path: '/userAgreement',
|
|
path: '/userAgreement',
|
|
component: () => import('@/views/login/components/userAgreement.vue'),
|
|
component: () => import('@/views/login/components/userAgreement.vue'),
|
|
meta: {
|
|
meta: {
|
|
- title: '用户协议'
|
|
|
|
|
|
+ title: '用户协议',
|
|
|
|
+ noLogin: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
]
|
|
@@ -43,7 +45,8 @@ const remainingRouter = [
|
|
path: '/privacyPolicy',
|
|
path: '/privacyPolicy',
|
|
component: () => import('@/views/login/components/privacyPolicy.vue'),
|
|
component: () => import('@/views/login/components/privacyPolicy.vue'),
|
|
meta: {
|
|
meta: {
|
|
- title: '隐私政策'
|
|
|
|
|
|
+ title: '隐私政策',
|
|
|
|
+ noLogin: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
]
|
|
@@ -64,7 +67,8 @@ const remainingRouter = [
|
|
path: '/home',
|
|
path: '/home',
|
|
component: () => import('@/views/Home/index'),
|
|
component: () => import('@/views/Home/index'),
|
|
meta: {
|
|
meta: {
|
|
- title: '首页'
|
|
|
|
|
|
+ title: '首页',
|
|
|
|
+ noLogin: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
]
|
|
@@ -75,7 +79,8 @@ const remainingRouter = [
|
|
name: 'register',
|
|
name: 'register',
|
|
meta: {
|
|
meta: {
|
|
hidden: true,
|
|
hidden: true,
|
|
- title: '注册企业'
|
|
|
|
|
|
+ title: '注册企业',
|
|
|
|
+ noLogin: true
|
|
}
|
|
}
|
|
},
|
|
},
|
|
...routeArray
|
|
...routeArray
|