You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.3 KiB
29 lines
1.3 KiB
|
5 years ago
|
import { Routes, RouterModule } from '@angular/router';
|
||
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { CollectionToolsComponent } from './collection-tools/collection-tools.component';
|
||
|
|
import { planComponent } from './plan/collection-tools.component';
|
||
|
|
import { DisposalNodeComponent } from './disposal-node/disposal-node.component';
|
||
|
|
import { DangerousComponent } from './dangerous/dangerous.component';
|
||
|
|
import { PlanAssistanceComponent } from './plan-assistance/plan-assistance.component';
|
||
|
|
import { RealCasesComponent } from './real-cases/real-cases.component';
|
||
|
|
import { SimilarPlansComponent } from './similar-plans/similar-plans.component';
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
const routes: Routes = [
|
||
|
|
{ path: 'collectionTools', component:CollectionToolsComponent },
|
||
|
|
{ path: 'plan', component:planComponent },
|
||
|
|
{ path: 'collectionTools', component:CollectionToolsComponent},
|
||
|
|
{ path: 'dangerous', component:DangerousComponent},
|
||
|
|
{ path: 'disposalNode', component:DisposalNodeComponent},
|
||
|
|
{ path: 'planAssistance', component:PlanAssistanceComponent},
|
||
|
|
{ path: 'realCases', component:RealCasesComponent},
|
||
|
|
{ path: 'similarPlans', component:SimilarPlansComponent},
|
||
|
|
];
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [RouterModule.forChild(routes)],
|
||
|
|
exports: [RouterModule]
|
||
|
|
})
|
||
|
|
export class UiRoutingModule {}
|