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.
|
|
|
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';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
NavComponent,
|
|
|
|
BasicInfoComponent,
|
|
|
|
TaskComponent,
|
|
|
|
StatisticAnalysisComponent,
|
|
|
|
SystemManagementComponent,
|
|
|
|
UserComponent,
|
|
|
|
RoleComponent,
|
|
|
|
OrComponent,
|
|
|
|
UnitComponent,
|
|
|
|
UnitDetailsComponent
|
|
|
|
],
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
HomeRoutingModule,
|
|
|
|
NzLayoutModule
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class HomeModule { }
|