| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- var routers = [
- {
- path: '/sys/user/list',
- name: 'SysUserList',
- // route level code-splitting
- // this generates a separate chunk (about.[hash].js) for this route
- // which is lazy-loaded when the route is visited.
- component: () => import('@/views/sys/user-list.vue'),
- meta: {
- roles: ["admin"],
- title: '用户管理'
- }
- },
- {
- path: '/base/labourServices/list',
- name: 'baseLabourServicesList',
- // route level code-splitting
- // this generates a separate chunk (about.[hash].js) for this route
- // which is lazy-loaded when the route is visited.
- component: () => import('@/views/base/labourServices-list.vue'),
- meta: {
- roles: ["admin"],
- title: '劳务对接管理'
- }
- },
- {
- path: '/base/company/list',
- name: 'baseCompanyList',
- // route level code-splitting
- // this generates a separate chunk (about.[hash].js) for this route
- // which is lazy-loaded when the route is visited.
- component: () => import('@/views/base/company-list.vue'),
- meta: {
- roles: ["admin"],
- title: '企业信息管理'
- }
- },
- {
- path: '/base/enterpriseCertificationApprove/detail',
- name: 'baseEnterpriseCertificationApproveDetail',
- // route level code-splitting
- // this generates a separate chunk (about.[hash].js) for this route
- // which is lazy-loaded when the route is visited.
- component: () => import('@/views/base/enterpriseCertificationApprove-detail.vue'),
- meta: {
- roles: ["admin"],
- title: '企业信息维护'
- }
- },
- {
- path: '/base/labourServices/lookUp',
- name: 'labourServicesLookUp',
- component: () => import('@/views/base/labourServices-lookUp.vue'),
- meta: {
- roles: ["admin"],
- title: '劳务对接信息详情'
- }
- },
- {
- path: '/base/messageNotice/list',
- name: 'messageNoticeList',
- component: () => import('@/views/base/messageNotice-list.vue'),
- meta: {
- roles: ["admin"],
- title: '通知管理'
- }
- },
- {
- path: '/base/userAuthenticationApprove/list',
- name: 'userAuthenticationApproveList',
- component: () => import('@/views/base/userAuthenticationApprove-list.vue'),
- meta: {
- roles: ["admin"],
- title: '用户实名审核'
- }
- },
- {
- path: '/base/enterpriseCertificationApprove/list',
- name: 'EnterpriseCertificationApproveList',
- component: () => import('@/views/base/enterpriseCertificationApprove-list.vue'),
- meta: {
- roles: ["admin"],
- title: '企业信息审核'
- }
- },
- {
- path: '/base/labourServicesApprove/list',
- name: 'LabourServicesApproveList',
- component: () => import('@/views/base/labourServicesApprove-list.vue'),
- meta: {
- roles: ["admin"],
- title: '劳务对接审核'
- }
- },
- ]
- export default routers;
|