我创建带有路由的组织模块,并且如果我单击组织,并且如果雇员还具有关于详细信息的导航,创建雇员等的功能,则我想在列表中显示雇员列表。
* org.html
组织1
* org.routing.module.ts
const orgRoutes:路由= [ { 路径:“, 组件:OrganizationComponent,pathMatch:“完整”, 儿童:[ { 路径:“, 儿童:[ {路径:“ create-emp”,组件:CreateEmpComponent}, {path:'archive-emp',component:ArchiveEmpComponent}, {path:'emp-detail',component:EmpDetailsComponent}, {path:”,组件:EmpListComponent} ] } ] } ];
* app.routing
{ 路径:“ org”, loadChildren:“ ./ org / org.module#OrgModule” }
我想要组织/ emp-list / emp-details或create-emp 在网址中