From a3a8c23b196980732a795713a5eb5fe0c7075bf9 Mon Sep 17 00:00:00 2001
From: fengxiang <110431245@qq.com>
Date: Wed, 11 Jul 2018 21:47:13 +0800
Subject: [PATCH] Revert "提交"

---
 src/app/routes/delon/delon.module.ts |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 48 insertions(+), 0 deletions(-)

diff --git a/src/app/routes/delon/delon.module.ts b/src/app/routes/delon/delon.module.ts
new file mode 100644
index 0000000..a143429
--- /dev/null
+++ b/src/app/routes/delon/delon.module.ts
@@ -0,0 +1,48 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+import { SharedModule } from '@shared/shared.module';
+
+import { DelonRoutingModule } from './delon-routing.module';
+
+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 { CanLeaveProvide } from './guard/can-leave.provide';
+import { GuardComponent } from './guard/guard.component';
+import { GuardLeaveComponent } from './guard/leave.component';
+import { GuardAdminComponent } from './guard/admin.component';
+import { GuardAuthComponent } from './guard/auth.component';
+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 COMPONENT = [
+  SimpleTableComponent,
+  UtilComponent,
+  PrintComponent,
+  ACLComponent,
+  GuardComponent,
+  GuardLeaveComponent,
+  GuardAdminComponent,
+  GuardAuthComponent,
+  CacheComponent,
+  DownFileComponent,
+  XlsxComponent,
+  ZipComponent,
+  DelonFormComponent,
+  QRComponent,
+];
+
+const COMPONENT_NOROUNT = [];
+
+@NgModule({
+  imports: [CommonModule, SharedModule, DelonRoutingModule],
+  providers: [CanLeaveProvide],
+  declarations: [...COMPONENT, ...COMPONENT_NOROUNT],
+  entryComponents: COMPONENT_NOROUNT,
+})
+export class DelonModule {}

--
Gitblit v1.8.0