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.
17 lines
720 B
17 lines
720 B
import { NgModule } from '@angular/core';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
import {OilCardListComponent} from './oil-card-list/oil-card-list.component';
|
|
import {OilCardRecordListComponent} from './oil-card-record-list/oil-card-record-list.component';
|
|
import {OilCardOpRecordListComponent} from './oil-card-op-record-list/oil-card-op-record-list.component';
|
|
|
|
const routes: Routes = [
|
|
{ path: 'list', component: OilCardListComponent},
|
|
{ path: 'record-list', component: OilCardRecordListComponent},
|
|
{ path: 'record-op-list', component: OilCardOpRecordListComponent},
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule]
|
|
})
|
|
export class OilCardRoutingModule { }
|
|
|