From 1a30ba4211462589698d26688ec24319e48b740c Mon Sep 17 00:00:00 2001 From: fengxiang <110431245@qq.com> Date: Wed, 11 Jul 2018 15:08:40 +0800 Subject: [PATCH] 提交 --- src/app/routes/delon/delon-routing.module.ts | 61 ++++++++++++++++++++++++++++++ 1 files changed, 61 insertions(+), 0 deletions(-) diff --git a/src/app/routes/delon/delon-routing.module.ts b/src/app/routes/delon/delon-routing.module.ts new file mode 100644 index 0000000..3bd0ddc --- /dev/null +++ b/src/app/routes/delon/delon-routing.module.ts @@ -0,0 +1,61 @@ +import { NgModule } from '@angular/core'; +import { Routes, RouterModule } from '@angular/router'; +import { ACLGuard } from '@delon/acl'; + +import { SimpleTableComponent } from './simple-table/simple-table.component'; +import { UtilComponent } from './util/util.component'; +import { PrintComponent } from './print/print.component'; +import { ACLComponent } from './acl/acl.component'; +import { GuardComponent } from './guard/guard.component'; +import { GuardLeaveComponent } from './guard/leave.component'; +import { GuardAuthComponent } from './guard/auth.component'; +import { GuardAdminComponent } from './guard/admin.component'; +import { CanLeaveProvide } from './guard/can-leave.provide'; +import { CacheComponent } from './cache/cache.component'; +import { DownFileComponent } from './downfile/downfile.component'; +import { XlsxComponent } from './xlsx/xlsx.component'; +import { ZipComponent } from './zip/zip.component'; +import { DelonFormComponent } from './form/form.component'; +import { QRComponent } from './qr/qr.component'; + +const routes: Routes = [ + { path: 'simple-table', component: SimpleTableComponent }, + { path: 'util', component: UtilComponent }, + { path: 'print', component: PrintComponent }, + { path: 'acl', component: ACLComponent }, + { + path: 'guard', + component: GuardComponent, + children: [ + { + path: 'leave', + component: GuardLeaveComponent, + canDeactivate: [CanLeaveProvide], + }, + { + path: 'auth', + component: GuardAuthComponent, + canActivate: [ACLGuard], + data: { guard: 'user1' }, + }, + { + path: 'admin', + component: GuardAdminComponent, + canActivate: [ACLGuard], + data: { guard: 'admin' }, + }, + ], + }, + { path: 'cache', component: CacheComponent }, + { path: 'qr', component: QRComponent }, + { path: 'downfile', component: DownFileComponent }, + { path: 'xlsx', component: XlsxComponent }, + { path: 'zip', component: ZipComponent }, + { path: 'form', component: DelonFormComponent }, +]; + +@NgModule({ + imports: [RouterModule.forChild(routes)], + exports: [RouterModule], +}) +export class DelonRoutingModule {} -- Gitblit v1.8.0