New changes added + AddEvent method partially done

This commit is contained in:
Tiago Kayaya
2020-08-20 14:28:50 +01:00
parent ffa9ecd1fe
commit 65c4cabcbf
24 changed files with 418 additions and 170 deletions
+10 -1
View File
@@ -41,7 +41,16 @@ const routes: Routes = [
},
{
path:':expedienteId',
loadChildren: ()=> import('../pages/gabinete-digital/expediente/expediente.module').then(m => m.ExpedientePageModule)
children: [
{
path:'',
loadChildren: ()=> import('../pages/gabinete-digital/expediente/expediente.module').then(m => m.ExpedientePageModule)
},
{
path:':expediente-detailId',
loadChildren: ()=> import('../pages/gabinete-digital/expediente/expediente-detail/expediente-detail.module').then(m => m.ExpedienteDetailPageModule)
}
]
}
]
},