|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { SystemRoutingModule } from './system-management-routing.module';
|
|
|
|
import { OrganizationComponent } from './organization/organization.component';
|
|
|
|
import { UserComponent } from './user/user.component';
|
|
|
|
import { RoleComponent } from './role/role.component';
|
|
|
|
import { NavigationComponent } from './navigation/navigation.component';
|
|
|
|
import { NzLayoutModule } from 'ng-zorro-antd/layout';
|
|
|
|
import { NzIconModule } from 'ng-zorro-antd/icon';
|
|
|
|
import { NzTableModule } from 'ng-zorro-antd/table';
|
|
|
|
import { NzDropDownModule } from 'ng-zorro-antd/dropdown';
|
|
|
|
import { NzPaginationModule } from 'ng-zorro-antd/pagination';
|
|
|
|
import { NzInputModule } from 'ng-zorro-antd/input';
|
|
|
|
import { NzButtonModule } from 'ng-zorro-antd/button';
|
|
|
|
import { NzFormModule } from 'ng-zorro-antd/form';
|
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
|
import { NzModalModule } from 'ng-zorro-antd/modal';
|
|
|
|
import { AdduserComponent } from './user/adduser/adduser.component';
|
|
|
|
import { EdituserComponent } from './user/edituser/edituser.component';
|
|
|
|
import { NzSelectModule } from 'ng-zorro-antd/select';
|
|
|
|
import { NzMessageModule } from 'ng-zorro-antd/message';
|
|
|
|
import { NzTreeModule } from 'ng-zorro-antd/tree';
|
|
|
|
import { AddroleComponent } from './role/addrole/addrole.component';
|
|
|
|
import { EditroleComponent } from './role/editrole/editrole.component';
|
|
|
|
import { NzSpinModule } from 'ng-zorro-antd/spin';
|
|
|
|
import { NzTreeSelectModule } from 'ng-zorro-antd/tree-select';
|
|
|
|
import { AddorComponent } from './organization/addor/addor.component';
|
|
|
|
import { EditorComponent } from './organization/editor/editor.component';
|
|
|
|
import { NzCheckboxModule } from 'ng-zorro-antd/checkbox';
|
|
|
|
import { AnalysisOfTheHostComponent } from './analysis-of-the-host/analysis-of-the-host.component';
|
|
|
|
import { AddhostComponent } from './analysis-of-the-host/addhost/addhost.component';
|
|
|
|
import { EdithostComponent } from './analysis-of-the-host/edithost/edithost.component';
|
|
|
|
import { AddcameraComponent } from './analysis-of-the-host/addcamera/addcamera.component';
|
|
|
|
import { EditcameraComponent } from './analysis-of-the-host/editcamera/editcamera.component';
|
|
|
|
import { PushComponent } from './push/push.component';
|
|
|
|
import { EditPushItemComponent } from './push/edit-push-item/edit-push-item.component';
|
|
|
|
import { FileOfLicenseComponent } from './file-of-license/file-of-license.component';
|
|
|
|
import { UpdateOfLicenseComponent } from './update-of-license/update-of-license.component';
|
|
|
|
import { AddFileOfLicenseComponent } from './file-of-license/add-file-of-license/add-file-of-license.component';
|
|
|
|
import { EditFileOfLicenseComponent } from './file-of-license/edit-file-of-license/edit-file-of-license.component';
|
|
|
|
import { AddUpdateOfLicenseComponent } from './update-of-license/add-update-of-license/add-update-of-license.component';
|
|
|
|
import { EditUpdateOfLicenseComponent } from './update-of-license/edit-update-of-license/edit-update-of-license.component';
|
|
|
|
import { MenuComponent } from './menu/menu.component';
|
|
|
|
import { AddmenuComponent } from './menu/addmenu/addmenu.component';
|
|
|
|
import { EditmenuComponent } from './menu/editmenu/editmenu.component';
|
|
|
|
import { MenusComponent } from './role/menus/menus.component';
|
|
|
|
import { PagesModule } from '../pages/pages.module';
|
|
|
|
import { WarningEventsComponent } from './organization/warning-events/warning-events.component';
|
|
|
|
import { NzSwitchModule } from 'ng-zorro-antd/switch';
|
|
|
|
import { NzNotificationModule } from 'ng-zorro-antd/notification';
|
|
|
|
import { DragDropModule } from '@angular/cdk/drag-drop';
|
|
|
|
@NgModule({
|
|
|
|
declarations: [OrganizationComponent, UserComponent, RoleComponent, NavigationComponent, AdduserComponent, EdituserComponent, AddroleComponent, EditroleComponent, AddorComponent, EditorComponent, AnalysisOfTheHostComponent, AddhostComponent, EdithostComponent, AddcameraComponent, EditcameraComponent, PushComponent, EditPushItemComponent, FileOfLicenseComponent, UpdateOfLicenseComponent, AddFileOfLicenseComponent, EditFileOfLicenseComponent, AddUpdateOfLicenseComponent, EditUpdateOfLicenseComponent, MenuComponent, AddmenuComponent, EditmenuComponent, MenusComponent, WarningEventsComponent],
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
SystemRoutingModule,
|
|
|
|
NzLayoutModule,
|
|
|
|
NzIconModule,
|
|
|
|
NzTableModule,
|
|
|
|
NzDropDownModule,
|
|
|
|
NzPaginationModule,
|
|
|
|
NzInputModule,
|
|
|
|
NzButtonModule,
|
|
|
|
NzFormModule,
|
|
|
|
FormsModule,
|
|
|
|
ReactiveFormsModule,
|
|
|
|
NzModalModule,
|
|
|
|
NzSelectModule,
|
|
|
|
NzMessageModule,
|
|
|
|
NzTreeModule,
|
|
|
|
NzSpinModule,
|
|
|
|
NzTreeSelectModule,
|
|
|
|
NzCheckboxModule,
|
|
|
|
PagesModule,
|
|
|
|
NzSwitchModule,
|
|
|
|
NzNotificationModule,
|
|
|
|
DragDropModule
|
|
|
|
],
|
|
|
|
entryComponents: [AdduserComponent, EdituserComponent, AddroleComponent, EditroleComponent, AddorComponent, EditorComponent, AddhostComponent, EdithostComponent, AddcameraComponent, EditcameraComponent, EditPushItemComponent, AddFileOfLicenseComponent, EditFileOfLicenseComponent, AddUpdateOfLicenseComponent, EditUpdateOfLicenseComponent, AddmenuComponent, EditmenuComponent, MenusComponent, WarningEventsComponent]
|
|
|
|
|
|
|
|
})
|
|
|
|
export class SystemManagementModule { }
|