Newer
Older
<div>
<div class="padding-bottom-15 text-right">
<button nz-button nzType="primary" (click)="handleAddTrack()">添加跟踪信息</button>
</div>
<nz-table #nzTable [nzData]="warnList" [nzFrontPagination]="false" [nzTotal]="page.totalNum"
[nzPageIndex]="page.pageNum"
[nzPageSize]="page.pageCount" (nzPageIndexChange)="change($event)" [nzLoading]="page.loading">
<thead>
<tr>
<th>消息内容</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let data of nzTable.data">
<td>{{data.createTime | date:"yyyy-MM-dd HH:mm:ss"}}</td>
<td>{{data.createUserName}}</td>
<td>{{data.msg}}</td>
</tr>
</tbody>
</nz-table>
</div>
<smart-create-track-info #smartCreateTrackInfo (done)="change(1)"></smart-create-track-info>