| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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/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: '企业信息维护'
- }
- }
- ]
- export default routers;
|