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.
42 lines
1.7 KiB
42 lines
1.7 KiB
<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"> |
|
<th> |
|
<span style="margin-left: 25%;">证件名称</span> |
|
</th> |
|
<th>证件编号</th> |
|
<th>证件有效期</th> |
|
<th>有效期类型</th> |
|
<th>办理类型</th> |
|
<th>通知内容</th> |
|
<th>通知状态</th> |
|
<th>处置状态</th> |
|
<th class="operation"> |
|
<span class="buleColor">忽略</span> |
|
<span class="greyColor" (click)="dispose()">处置</span> |
|
<span class="buleColor">申请延期</span> |
|
</th> |
|
</tr> |
|
</tbody> |
|
</nz-table> |
|
|
|
</div> |
|
</div> |