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

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

View File

@@ -0,0 +1,19 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import {AlertCenterComponent} from "./alert-center/alert-center.component";
import {AlertSettingComponent} from "./alert-setting/alert-setting.component";
import {AlertNoticeComponent} from "./alert-notice/alert-notice.component";
const routes: Routes = [
{ path: '', component: AlertCenterComponent },
{ path: 'center', component: AlertCenterComponent },
{ path: 'setting', component: AlertSettingComponent },
{ path: 'notice', component: AlertNoticeComponent },
{ path: '**', component: AlertCenterComponent }
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class AlertRoutingModule { }