You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
4.7 KiB
103 lines
4.7 KiB
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 { NzStepsModule } from 'ng-zorro-antd/steps'; |
|
import { NzTableModule } from 'ng-zorro-antd/table'; |
|
import { NzCheckboxModule } from 'ng-zorro-antd/checkbox'; |
|
import { NzTimePickerModule } from 'ng-zorro-antd/time-picker'; |
|
import { NzProgressModule } from 'ng-zorro-antd/progress'; |
|
import { NzPopconfirmModule } from 'ng-zorro-antd/popconfirm'; |
|
import { NzBadgeModule } from 'ng-zorro-antd/badge'; |
|
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'; |
|
import { GetOutOfLineDetailsComponent } from './today-warning/get-out-of-line-details/get-out-of-line-details.component'; |
|
import { NzNotificationModule } from 'ng-zorro-antd/notification'; |
|
import { DispositionComponent } from './disposition/disposition.component'; |
|
import { OilUnloadingProcessComponent } from './oil-unloading-process/oil-unloading-process.component'; |
|
|
|
@NgModule({ |
|
declarations: [LoginComponent, RegisterComponent, HomeComponent, PlanComponent, TodayWarningComponent, CriminalRecordsComponent, |
|
TodayWarningAdminComponent, CriminalRecordsAdminComponent, LeftDomainComponent, EquipmentInfoComponent, OilStationInfoComponent, |
|
AddequipmentComponent, EditequipmentComponent,PlanAdminComponent, GetOutOfLineDetailsComponent, DispositionComponent, OilUnloadingProcessComponent], |
|
|
|
|
|
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, |
|
NzStepsModule, |
|
NzTableModule, |
|
NzCheckboxModule, |
|
NzTimePickerModule, |
|
NzProgressModule, |
|
NzNotificationModule, |
|
NzPopconfirmModule, |
|
NzBadgeModule |
|
], |
|
entryComponents: [AddequipmentComponent, EditequipmentComponent,GetOutOfLineDetailsComponent,DispositionComponent,OilUnloadingProcessComponent], |
|
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
|
|
}) |
|
export class PagesModule { }
|
|
|