serviceman.ts 317 Bytes
import Layout from '@/layout/enter.vue'
const serviceman = {
  path: '/',
  component: Layout,
  name: 'Serviceman',
  children: [{
    path: 'serviceman',
    name: 'serviceman',
    component: () => import('@/views/serviceman/index.vue'),
    meta: { title: '维修人员管理' }
  }]
}

export default serviceman