父路线:
{
path: "employee",
loadChildren: () => require('./employment.module')['EmployementModule']);
},
{
path:"candidate",
loadChildren: () => require('./employment.module')['EmployementModule']);
}
儿童路线:
{
path: "edit/:id",
component: EmployeeComponent
},
{
path: "edit/:id",
component: CandidateComponent
},