| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- var routers = [
- {
- path: '/base/customerInfo/list',
- name: 'baseCustomerInfoList',
- // 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/customerInfo-list.vue'),
- meta: {
- roles: ["admin"],
- title: '客户管理'
- }
- },
- {
- path: '/base/technicianInfo/list',
- name: 'baseTechnicianInfoList',
- // 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/technicianInfo-list.vue'),
- meta: {
- roles: ["admin"],
- title: '师傅管理'
- }
- },
- {
- path: '/base/workOrder/list',
- name: 'baseWorkOrderList',
- // 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/workOrder-list.vue'),
- meta: {
- roles: ["admin"],
- title: '工单管理'
- }
- },
- {
- path: '/base/argonPartner/list',
- name: 'baseArgonPartnerList',
- // 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/argonPartner-list.vue'),
- meta: {
- roles: ["admin"],
- title: '氩气合作商管理'
- }
- },
- {
- path: '/base/laborerInfo/list',
- name: 'baseLaborerInfoList',
- // 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/laborerInfo-list.vue'),
- meta: {
- roles: ["admin"],
- title: '搬运小工管理'
- }
- },
- {
- path: '/base/transportationInfo/list',
- name: 'baseTransportationInfoList',
- // 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/transportationInfo-list.vue'),
- meta: {
- roles: ["admin"],
- title: '运输方管理'
- }
- },
- ]
- export default routers;
|