You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<div class="box" id="inform">
|
|
|
|
<div class="tablebox" id="tablebox">
|
|
|
|
<nz-table *ngIf="tableScrollHeight" [nzLoading]="tableSpin" [nzPageSize]='9999' #headerTable [nzData]="list"
|
|
|
|
[nzShowPagination]="false" [nzScroll]="{ y:tableScrollHeight }" [nzNoResult]='null' nzTableLayout="fixed">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th [nzWidth]="'16%'">
|
|
|
|
<span style="margin-left: 25%;">证件名称</span>
|
|
|
|
</th>
|
|
|
|
<th>证件编号</th>
|
|
|
|
<th>证件有效期</th>
|
|
|
|
<th>有效期类型</th>
|
|
|
|
<th>办理类型</th>
|
|
|
|
<th>通知内容</th>
|
|
|
|
<th>通知状态</th>
|
|
|
|
<th>处置状态</th>
|
|
|
|
<th>操作</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="table">
|
|
|
|
<tr *ngFor="let item of headerTable.data;let key = index">
|
|
|
|
<td>
|
|
|
|
<span style="margin-left: 25%;">证件名称</span>
|
|
|
|
</td>
|
|
|
|
<td>证件编号</td>
|
|
|
|
<td>证件有效期</td>
|
|
|
|
<td>有效期类型</td>
|
|
|
|
<td>办理类型</td>
|
|
|
|
<td>通知内容</td>
|
|
|
|
<td>通知状态</td>
|
|
|
|
<td>处置状态</td>
|
|
|
|
<td class="operation">
|
|
|
|
<span class="blueColor">忽略</span>
|
|
|
|
<span class="greyColor" (click)="dispose()">处置</span>
|
|
|
|
<span class="blueColor">申请延期</span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</nz-table>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|