[manager,webapp]优化监控类型参数,告警处理提示

This commit is contained in:
tomsun28
2022-01-30 12:39:23 +08:00
parent e914fd6941
commit d887983145
12 changed files with 194 additions and 58 deletions

View File

@@ -106,7 +106,7 @@ export class AlertCenterComponent implements OnInit {
return;
}
this.modal.confirm({
nzTitle: '请确认是否批量标记已',
nzTitle: '请确认是否批量标记已处理',
nzOkText: '确定',
nzCancelText: '取消',
nzOkDanger: true,
@@ -120,7 +120,7 @@ export class AlertCenterComponent implements OnInit {
return;
}
this.modal.confirm({
nzTitle: '请确认是否批量标记未',
nzTitle: '请确认是否批量标记未处理',
nzOkText: '确定',
nzCancelText: '取消',
nzOkDanger: true,
@@ -146,7 +146,7 @@ export class AlertCenterComponent implements OnInit {
let alerts = new Set<number>();
alerts.add(alertId);
this.modal.confirm({
nzTitle: '请确认是否标记已',
nzTitle: '请确认是否标记已处理',
nzOkText: '确定',
nzCancelText: '取消',
nzOkDanger: true,
@@ -159,7 +159,7 @@ export class AlertCenterComponent implements OnInit {
let alerts = new Set<number>();
alerts.add(alertId);
this.modal.confirm({
nzTitle: '请确认是否标记未',
nzTitle: '请确认是否标记未处理',
nzOkText: '确定',
nzCancelText: '取消',
nzOkDanger: true,