import { DollarOutlined } from '@ant-design/icons-vue' export default [ { path: 'serverObj', name: 'serverObj', component: 'RouteViewLayout', meta: { icon: DollarOutlined, title: '服务对象管理', isMenu: true, keepAlive: true, permission: '*', }, children: [ { path: 'serverList', name: 'serverList', component: 'serverObj/serverList/index.vue', meta: { title: '服务对象列表', isMenu: true, keepAlive: true, permission: '*', }, }, { path: 'allocation', name: 'allocation', component: 'serverObj/allocation/index.vue', meta: { title: '服务对象分配', isMenu: true, keepAlive: true, permission: '*', }, }, { path: 'domicile', name: 'domicile', component: 'serverObj/domicile/index.vue', meta: { title: '户籍对象列表', isMenu: true, keepAlive: true, permission: '*', }, }, { path: 'institution', name: 'institution', component: 'serverObj/institution/index.vue', meta: { title: '机构服务对象列表', isMenu: true, keepAlive: true, permission: '*', }, }, { path: 'toBeInstitution', name: 'toBeInstitution', component: 'serverObj/toBeInstitution/index.vue', meta: { title: '待完善对象列表', isMenu: true, keepAlive: true, permission: '*', }, }, { path: 'carePhone', name: 'carePhone', component: 'serverObj/carePhone/index.vue', meta: { title: '电话关爱对象', isMenu: true, keepAlive: true, permission: '*', }, }, { path: 'serverSearch', name: 'serverSearch', component: 'serverObj/serverSearch/index.vue', meta: { title: '服务对象查询', isMenu: true, keepAlive: true, permission: '*', }, }, { path: 'existence', name: 'existence', component: 'serverObj/existence/index.vue', meta: { title: '生存状态管理', isMenu: true, keepAlive: true, permission: '*', }, }, { path: 'contacts', name: 'contacts', component: 'serverObj/contacts/index.vue', meta: { title: '联系人管理', isMenu: true, keepAlive: true, permission: '*', }, } ], }, ]