|
@@ -1,6 +1,6 @@
|
|
|
// 公共路由(任何身份都可以访问的路由 如:商城)
|
|
|
|
|
|
-import headhunting from './components/headhunting'
|
|
|
+import Layout from '@/layout'
|
|
|
|
|
|
const common = [
|
|
|
{
|
|
@@ -102,7 +102,45 @@ const common = [
|
|
|
hideSide: true
|
|
|
}
|
|
|
},
|
|
|
- ...headhunting
|
|
|
+ {
|
|
|
+ path: '/headhunting',
|
|
|
+ component: Layout,
|
|
|
+ meta: {
|
|
|
+ title: '门墩儿猎寻服务'
|
|
|
+ },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path:'/headhunting',
|
|
|
+ component: () => import('@/views/headhunting/index.vue')
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/headhunting/service',
|
|
|
+ component: Layout,
|
|
|
+ meta: {
|
|
|
+ title: '我们的服务'
|
|
|
+ },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/headhunting/service',
|
|
|
+ component: () => import('@/views/headhunting/service.vue')
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/headhunting/service/details',
|
|
|
+ component: Layout,
|
|
|
+ meta: {
|
|
|
+ title: '门墩儿猎寻服务'
|
|
|
+ },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/headhunting/service/details',
|
|
|
+ component: () => import('@/views/headhunting/details.vue')
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
]
|
|
|
|
|
|
export default common
|