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.
41 lines
1.5 KiB
41 lines
1.5 KiB
import { NgModule } from '@angular/core'; |
|
import { CommonModule } from '@angular/common'; |
|
|
|
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 { NzDropDownModule } from 'ng-zorro-antd/dropdown'; |
|
import { NzInputModule } from 'ng-zorro-antd/input'; |
|
import { NzTableModule } from 'ng-zorro-antd/table'; |
|
@NgModule({ |
|
declarations: [ |
|
NavComponent, |
|
BasicInfoComponent, |
|
TaskComponent, |
|
StatisticAnalysisComponent, |
|
SystemManagementComponent, |
|
UserComponent, |
|
RoleComponent, |
|
OrComponent, |
|
UnitComponent, |
|
UnitDetailsComponent |
|
], |
|
imports: [ |
|
CommonModule, |
|
HomeRoutingModule, |
|
NzLayoutModule, |
|
NzDropDownModule, |
|
NzInputModule, |
|
NzTableModule |
|
] |
|
}) |
|
export class HomeModule { }
|
|
|