[web-app] 告警配置列表信息展示

This commit is contained in:
tomsun28
2021-12-12 10:33:27 +08:00
parent 4586eba054
commit 25bf425617
18 changed files with 522 additions and 16 deletions

View File

@@ -0,0 +1,27 @@
import { NgModule, Type } from '@angular/core';
import { SharedModule } from '@shared';
import { AlertRoutingModule } from './alert-routing.module';
import {NzBreadCrumbModule} from "ng-zorro-antd/breadcrumb";
import {NzDividerModule} from "ng-zorro-antd/divider";
import {AlertCenterComponent} from "./alert-center/alert-center.component";
import {AlertSettingComponent} from "./alert-setting/alert-setting.component";
import {AlertNoticeComponent} from "./alert-notice/alert-notice.component";
import {NzTagModule} from "ng-zorro-antd/tag";
const COMPONENTS: Type<void>[] = [
AlertCenterComponent,
AlertSettingComponent,
AlertNoticeComponent
];
@NgModule({
imports: [
SharedModule,
AlertRoutingModule,
NzDividerModule,
NzBreadCrumbModule,
NzTagModule,
],
declarations: COMPONENTS,
})
export class AlertModule { }