|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { A11yModule } from '@angular/cdk/a11y';
|
|
|
|
import { DragDropModule } from '@angular/cdk/drag-drop';
|
|
|
|
import { PortalModule } from '@angular/cdk/portal';
|
|
|
|
import { ScrollingModule } from '@angular/cdk/scrolling';
|
|
|
|
import { CdkStepperModule } from '@angular/cdk/stepper';
|
|
|
|
import { CdkTableModule } from '@angular/cdk/table';
|
|
|
|
import { CdkTreeModule } from '@angular/cdk/tree';
|
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { LoginComponent } from './login/login.component';
|
|
|
|
import { RegisterComponent } from './register/register.component';
|
|
|
|
import { HomeComponent } from './home/home.component';
|
|
|
|
import { NzFormModule } from 'ng-zorro-antd/form';
|
|
|
|
import { NzInputModule } from 'ng-zorro-antd/input';
|
|
|
|
import { UiModule } from '../ui/ui.module';
|
|
|
|
import { NzButtonModule } from 'ng-zorro-antd/button';
|
|
|
|
import { PlanComponent } from './plan/plan.component';
|
|
|
|
import { PagesRoutingModule } from './pages-routing.module';
|
|
|
|
import { TodayWarningComponent } from './today-warning/today-warning.component';
|
|
|
|
import { CriminalRecordsComponent } from './criminal-records/criminal-records.component';
|
|
|
|
import { NzSelectModule } from 'ng-zorro-antd/select';
|
|
|
|
import { NzDatePickerModule } from 'ng-zorro-antd/date-picker';
|
|
|
|
import { NzIconModule } from 'ng-zorro-antd/icon';
|
|
|
|
import { NzGridModule } from 'ng-zorro-antd/grid';
|
|
|
|
import { NzModalModule } from 'ng-zorro-antd/modal';
|
|
|
|
import { NzPaginationModule } from 'ng-zorro-antd/pagination';
|
|
|
|
import { NzDropDownModule } from 'ng-zorro-antd/dropdown';
|
|
|
|
import { NzMessageModule } from 'ng-zorro-antd/message';
|
|
|
|
import { NzSpinModule } from 'ng-zorro-antd/spin';
|
|
|
|
import { TodayWarningAdminComponent } from './today-warning-admin/today-warning-admin.component';
|
|
|
|
import { CriminalRecordsAdminComponent } from './criminal-records-admin/criminal-records-admin.component';
|
|
|
|
@NgModule({
|
|
|
|
declarations: [LoginComponent, RegisterComponent, HomeComponent, PlanComponent, TodayWarningComponent, CriminalRecordsComponent, TodayWarningAdminComponent, CriminalRecordsAdminComponent,],
|
|
|
|
imports: [
|
|
|
|
PagesRoutingModule,
|
|
|
|
CommonModule,
|
|
|
|
A11yModule,
|
|
|
|
PortalModule,
|
|
|
|
ScrollingModule,
|
|
|
|
CdkStepperModule,
|
|
|
|
CdkTableModule,
|
|
|
|
CdkTreeModule,
|
|
|
|
DragDropModule,
|
|
|
|
FormsModule,
|
|
|
|
ReactiveFormsModule,
|
|
|
|
RouterModule,
|
|
|
|
NzFormModule,
|
|
|
|
NzInputModule,
|
|
|
|
UiModule,
|
|
|
|
NzButtonModule,
|
|
|
|
NzSelectModule,
|
|
|
|
NzDatePickerModule,
|
|
|
|
NzIconModule,
|
|
|
|
NzGridModule,
|
|
|
|
NzModalModule,
|
|
|
|
NzPaginationModule,
|
|
|
|
NzDropDownModule,
|
|
|
|
NzMessageModule,
|
|
|
|
NzSpinModule
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class PagesModule { }
|