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.
54 lines
2.4 KiB
54 lines
2.4 KiB
import { NgModule } from '@angular/core'; |
|
import { CommonModule } from '@angular/common'; |
|
import { NzDropDownModule } from 'ng-zorro-antd/dropdown'; |
|
import { HomeRoutingModule } from './home-routing.module'; |
|
import { NavComponent } from './nav/nav.component'; |
|
import { NzLayoutModule } from 'ng-zorro-antd/layout'; |
|
import { BasicInfoComponent } from './basic-info/basic-info.component'; |
|
import { TaskComponent } from './task/task.component'; |
|
import { StatisticAnalysisComponent } from './statistic-analysis/statistic-analysis.component'; |
|
import { SystemManagementComponent } from './system-management/system-management.component'; |
|
import { UserComponent } from './system-management/user/user.component'; |
|
import { RoleComponent } from './system-management/role/role.component'; |
|
import { OrComponent } from './system-management/or/or.component'; |
|
import { UnitComponent } from './basic-info/unit/unit.component'; |
|
import { UnitDetailsComponent } from './basic-info/unit-details/unit-details.component'; |
|
import { NzIconModule } from 'ng-zorro-antd/icon'; |
|
import { ZhiIndicatorsComponent } from './task/zhi-indicators/zhi-indicators.component'; |
|
import { ZhiAuditComponent } from './task/zhi-audit/zhi-audit.component'; |
|
import { DaMonthlyTaskOverviewComponent } from './task/da-monthly-task-overview/da-monthly-task-overview.component'; |
|
import { DaSubordinateAuditComponent } from './task/da-subordinate-audit/da-subordinate-audit.component'; |
|
import { DaOneselfPlanComponent } from './task/da-oneself-plan/da-oneself-plan.component'; |
|
import { StationTaskExecutionComponent } from './task/station-task-execution/station-task-execution.component'; |
|
import { StationTaskApplyComponent } from './task/station-task-apply/station-task-apply.component'; |
|
import { StationWeeklyPlanComponent } from './task/station-weekly-plan/station-weekly-plan.component'; |
|
@NgModule({ |
|
declarations: [ |
|
NavComponent, |
|
BasicInfoComponent, |
|
TaskComponent, |
|
StatisticAnalysisComponent, |
|
SystemManagementComponent, |
|
UserComponent, |
|
RoleComponent, |
|
OrComponent, |
|
UnitComponent, |
|
UnitDetailsComponent, |
|
ZhiIndicatorsComponent, |
|
ZhiAuditComponent, |
|
DaMonthlyTaskOverviewComponent, |
|
DaSubordinateAuditComponent, |
|
DaOneselfPlanComponent, |
|
StationTaskExecutionComponent, |
|
StationTaskApplyComponent, |
|
StationWeeklyPlanComponent |
|
], |
|
imports: [ |
|
CommonModule, |
|
HomeRoutingModule, |
|
NzLayoutModule, |
|
NzDropDownModule, |
|
NzIconModule |
|
] |
|
}) |
|
export class HomeModule { }
|
|
|