2021-11-28 14:58:20 +08:00
|
|
|
import { NgModule, Type } from '@angular/core';
|
|
|
|
|
import { SharedModule } from '@shared';
|
2021-12-23 15:59:49 +08:00
|
|
|
import { NzBreadCrumbModule } from 'ng-zorro-antd/breadcrumb';
|
|
|
|
|
import { NzDividerModule } from 'ng-zorro-antd/divider';
|
|
|
|
|
import { NzLayoutModule } from 'ng-zorro-antd/layout';
|
|
|
|
|
import { NzRadioModule } from 'ng-zorro-antd/radio';
|
|
|
|
|
import { NzSpaceModule } from 'ng-zorro-antd/space';
|
|
|
|
|
import { NzSwitchModule } from 'ng-zorro-antd/switch';
|
|
|
|
|
import { NzTagModule } from 'ng-zorro-antd/tag';
|
|
|
|
|
import { NgxEchartsModule } from 'ngx-echarts';
|
|
|
|
|
|
|
|
|
|
import { MonitorDataChartComponent } from './monitor-data-chart/monitor-data-chart.component';
|
2022-01-30 14:00:46 +08:00
|
|
|
import { MonitorDataTableComponent } from './monitor-data-table/monitor-data-table.component';
|
2021-12-23 15:59:49 +08:00
|
|
|
import { MonitorDetailComponent } from './monitor-detail/monitor-detail.component';
|
|
|
|
|
import { MonitorEditComponent } from './monitor-edit/monitor-edit.component';
|
|
|
|
|
import { MonitorListComponent } from './monitor-list/monitor-list.component';
|
|
|
|
|
import { MonitorNewComponent } from './monitor-new/monitor-new.component';
|
2021-11-28 14:58:20 +08:00
|
|
|
import { MonitorRoutingModule } from './monitor-routing.module';
|
2022-04-06 07:38:54 +08:00
|
|
|
import { NzCollapseModule } from 'ng-zorro-antd/collapse';
|
2021-11-28 14:58:20 +08:00
|
|
|
|
2021-12-23 15:59:49 +08:00
|
|
|
const COMPONENTS: Array<Type<void>> = [
|
2021-11-30 22:16:38 +08:00
|
|
|
MonitorNewComponent,
|
|
|
|
|
MonitorEditComponent,
|
|
|
|
|
MonitorListComponent,
|
2021-12-06 22:14:35 +08:00
|
|
|
MonitorDetailComponent,
|
2022-01-30 14:00:46 +08:00
|
|
|
MonitorDataTableComponent,
|
2021-12-06 22:14:35 +08:00
|
|
|
MonitorDataChartComponent
|
2021-11-30 22:16:38 +08:00
|
|
|
];
|
2021-11-28 14:58:20 +08:00
|
|
|
|
|
|
|
|
@NgModule({
|
2021-12-06 22:14:35 +08:00
|
|
|
imports: [
|
|
|
|
|
SharedModule,
|
|
|
|
|
MonitorRoutingModule,
|
|
|
|
|
NzBreadCrumbModule,
|
|
|
|
|
NzDividerModule,
|
|
|
|
|
NzSwitchModule,
|
|
|
|
|
NzTagModule,
|
|
|
|
|
NzRadioModule,
|
|
|
|
|
NgxEchartsModule,
|
|
|
|
|
NzLayoutModule,
|
2022-04-06 07:38:54 +08:00
|
|
|
NzSpaceModule,
|
|
|
|
|
NzCollapseModule
|
2021-12-06 22:14:35 +08:00
|
|
|
],
|
2021-12-23 15:59:49 +08:00
|
|
|
declarations: COMPONENTS
|
2021-11-28 14:58:20 +08:00
|
|
|
})
|
2021-12-23 15:59:49 +08:00
|
|
|
export class MonitorModule {}
|