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