Files
bbq/src/app/routes/routes-routing.module.ts
Taric Xin fe3d6b6f92 edit
2022-01-13 17:13:24 +08:00

87 lines
3.6 KiB
TypeScript

/*
* @Author: your name
* @Date: 2021-11-29 10:20:33
* @LastEditTime: 2021-12-07 16:12:50
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \tms-obc-web\src\app\routes\routes-routing.module.ts
*/
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
// layout
import { LayoutProComponent } from '@brand';
import { EATokenGuard } from '@core';
import { environment } from '@env/environment';
// dashboard pages
import { DashboardComponent } from './dashboard/dashboard.component';
const routes: Routes = [
{
path: '',
component: LayoutProComponent,
canActivate: [EATokenGuard],
canActivateChild: [EATokenGuard],
children: [
{ path: '', redirectTo: 'dashboard', pathMatch: 'full' },
{ path: 'dashboard', component: DashboardComponent },
{ path: 'demo', loadChildren: () => import('./demo/demo.module').then(m => m.DemoModule) },
{
path: 'account',
loadChildren: () => import('./account/account.module').then(m => m.AccountModule)
},
{
path: 'usercenter',
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) },
{
path: 'supply-management',
loadChildren: () => import('./supply-management/supply-management.module').then(m => m.SupplyManagementModule)
},
{
path: 'order-management',
loadChildren: () => import('./order-management/order-management.module').then(m => m.OrderManagementModule)
},
{
path: 'waybill-management',
loadChildren: () => import('./waybill-management/waybill-management.module').then(m => m.WaybillManagementModule)
},
{
path: 'financial-management',
loadChildren: () => import('./financial-management/financial-management.module').then(m => m.FinancialManagementModule)
},
{
path: 'contract-management',
loadChildren: () => import('./contract-management/contract-management.module').then(m => m.ContractManagementManagementModule)
},
{ path: 'menu-management', loadChildren: () => import('./menu-manager/menu-manager.module').then(m => m.MenuManagerModule) },
{
path: 'download',
loadChildren: () => import('./download/download.module').then(m => m.DownloadModule)
}
]
},
// passport
{ path: '', loadChildren: () => import('./passport/passport.module').then(m => m.PassportModule) },
{ path: 'exception', loadChildren: () => import('./exception/exception.module').then(m => m.ExceptionModule) },
// 单页不包裹Layout
{ path: '**', redirectTo: 'exception/404' }
];
@NgModule({
imports: [
RouterModule.forRoot(routes, {
useHash: environment.useHash,
// NOTICE: If you use `reuse-tab` component and turn on keepingScroll you can set to `disabled`
// Pls refer to https://ng-alain.com/components/reuse-tab
scrollPositionRestoration: 'top'
})
],
exports: [RouterModule]
})
export class RouteRoutingModule {}