|
|
|
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } 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 { NzTreeModule } from 'ng-zorro-antd/tree';
|
|
|
|
import { NzCollapseModule } from 'ng-zorro-antd/collapse';
|
|
|
|
import { TodayWarningAdminComponent } from './today-warning-admin/today-warning-admin.component';
|
|
|
|
import { CriminalRecordsAdminComponent } from './criminal-records-admin/criminal-records-admin.component';
|
|
|
|
import { EquipmentInfoComponent } from './equipment-info/equipment-info.component';
|
|
|
|
import { OilStationInfoComponent } from './oil-station-info/oil-station-info.component';
|
|
|
|
import { LeftDomainComponent } from './left-domain/left-domain.component';
|
|
|
|
import { AddequipmentComponent } from './equipment-info/addequipment/addequipment.component';
|
|
|
|
import { EditequipmentComponent } from './equipment-info/editequipment/editequipment.component';
|
|
|
|
import { NzTreeSelectModule } from 'ng-zorro-antd/tree-select';
|
|
|
|
import { PlanAdminComponent } from './plan-admin/plan-admin.component';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [LoginComponent, RegisterComponent, HomeComponent, PlanComponent, TodayWarningComponent, CriminalRecordsComponent,
|
|
|
|
TodayWarningAdminComponent, CriminalRecordsAdminComponent, LeftDomainComponent, EquipmentInfoComponent, OilStationInfoComponent,
|
|
|
|
AddequipmentComponent, EditequipmentComponent,PlanAdminComponent],
|
|
|
|
|
|
|
|
|
|
|
|
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,
|
|
|
|
NzTreeModule,
|
|
|
|
NzTreeSelectModule,
|
|
|
|
NzCollapseModule
|
|
|
|
|
|
|
|
],
|
|
|
|
entryComponents: [AddequipmentComponent, EditequipmentComponent],
|
|
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
|
|
|
|
|
|
})
|
|
|
|
export class PagesModule { }
|