Commit caa0b6c4 authored by wangqinghua's avatar wangqinghua

update

parent 0a1f83a8
......@@ -153,36 +153,30 @@
<nz-table #nzTable [nzData]="alarmList">
<thead>
<tr>
<th nzShowSort>产生时间</th>
<th nzWidth="20%">产生时间</th>
<th>级别</th>
<th nzWidth="15%">告警信息</th>
<th nzWidth="25%">告警信息</th>
<th>步骤名称</th>
<th>持续时间</th>
<th>产生事件</th>
<th>状态</th>
<th style="text-align: center">发送记录</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let data of nzTable.data">
<td class="table-timeline">
<nz-timeline-item>{{data.clock | date:'yyyy-MM-dd HH:MM:ss'}}</nz-timeline-item>
<nz-timeline-item>{{data.clock | date:'yyyy-MM-dd HH:mm:ss'}}</nz-timeline-item>
</td>
<td class="round-tag">
<td class="round-tag tag-form">
<nz-tag *ngIf="data.priority == 4 || data.priority == 5" [nzColor]="'#fc0d1b'"></nz-tag>
<nz-tag *ngIf="data.priority == 2 || data.priority == 3" [nzColor]="'#fd9827'"></nz-tag>
</td>
<td>名称</td>
<td>{{data.description}}</td>
<td>{{data.equipmentType}}</td>
<td>{{data.groupname}}</td>
<td>{{data.continuedTime}}</td>
<td>{{data.eventid}}</td>
<td>
<ng-container *ngIf="data.r_clock">已恢复</ng-container>
<ng-container *ngIf="!data.r_clock">告警中</ng-container>
</td>
<td class="list-icon" (click)="showLog(data)"><i class="anticon anticon-profile"></i></td>
</tr>
</tbody>
</nz-table>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment