票务管理配置

This commit is contained in:
Taric Xin
2021-12-03 15:35:24 +08:00
parent 24895e552e
commit f704037fe4
23 changed files with 192 additions and 0 deletions

View File

@ -32,6 +32,7 @@ const routes: Routes = [
loadChildren: () => import('./usercenter/usercenter.module').then(m => m.UsercenterModule)
},
{ path: 'system', loadChildren: () => import('./sys-setting/sys-setting.module').then(m => m.SysSettingModule) },
{ path: 'ticket', loadChildren: () => import('./ticket-management/ticket-management.module').then(m => m.TicketManagementModule) },
{ path: 'supplygoods', loadChildren: () => import('./supply-goods/supply-goods.module').then(m => m.SupplyGoodsModule) },
{ path: 'vehicle', loadChildren: () => import('./vehicle/vehicle.module').then(m => m.VehicleModule) }
]