|
@@ -210,16 +210,43 @@ const routes: Array<RouteRecordRaw> = [
|
|
|
component: DemoPage
|
|
|
},
|
|
|
{
|
|
|
- path: '/jobUserInfo/index',
|
|
|
- component: JobUserInfoIndex
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/jobUserInfo/useredit',
|
|
|
- component: JobUserInfoUserEdit
|
|
|
+ path: '/jobUserInfo/',
|
|
|
+ component: WrapperLayoutView,
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: 'index',
|
|
|
+ name: 'index',
|
|
|
+ component: () => import('@/views/pages/jobUserInfo/index.vue'),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'useredit',
|
|
|
+ name: 'useredit',
|
|
|
+ component: () => import('@/views/pages/jobUserInfo/userEdit.vue'),
|
|
|
+ }
|
|
|
+ ,
|
|
|
+ {
|
|
|
+ path: 'companyedit',
|
|
|
+ name: 'companyedit',
|
|
|
+ component: () => import('@/views/pages/jobUserInfo/companyEdit.vue'),
|
|
|
+ }
|
|
|
+ ]
|
|
|
},
|
|
|
{
|
|
|
- path: '/jobUserInfo/companyedit',
|
|
|
- component: JobUserInfoCompanyEdit
|
|
|
+ path: '/wxMessage/',
|
|
|
+ component: WrapperLayoutView,
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: 'companyInfo',
|
|
|
+ name: 'companyInfo',
|
|
|
+ component: () => import('@/views/pages/wxMessage/companyInfo.vue'),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'jobUserInfo',
|
|
|
+ name: 'jobUserInfo',
|
|
|
+ component: () => import('@/views/pages/wxMessage/jobUserInfo.vue'),
|
|
|
+ }
|
|
|
+ ]
|
|
|
+
|
|
|
}
|
|
|
]
|
|
|
|