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.4 KiB
29 lines
1.4 KiB
import { NgModule } from '@angular/core';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
import {SystemOrganizationComponent} from './system-organization/system-organization.component';
|
|
import {SystemRoleComponent} from './system-role/system-role.component';
|
|
import {SystemRoleShowComponent} from './system-role-show/system-role-show.component';
|
|
import {SystemUserComponent} from './system-user/system-user.component';
|
|
import {PermissionComponent} from './permission/permission.component';
|
|
import {MenuComponent} from './menu/menu.component';
|
|
import {PositionRelComponent} from './position-rel/position-rel.component';
|
|
import {SinopecConfigComponent} from './sinopec-config/sinopec-config.component';
|
|
import {SinopecEditComponent} from './sinopec-edit/sinopec-edit.component';
|
|
|
|
const routes: Routes = [
|
|
{ path: 'systemorganization', component: SystemOrganizationComponent},
|
|
{ path: 'systemrole', component: SystemRoleComponent},
|
|
{ path: 'systemrole-show', component: SystemRoleShowComponent},
|
|
{ path: 'systemuser', component: SystemUserComponent },
|
|
{ path: 'menu', component: MenuComponent },
|
|
{ path: 'permission', component: PermissionComponent },
|
|
{ path: 'positionrel', component: PositionRelComponent },
|
|
{ path: 'sinopec-config', component: SinopecConfigComponent },
|
|
{ path: 'sinopec-edit', component: SinopecEditComponent },
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule]
|
|
})
|
|
export class SystemRoutingModule { }
|
|
|