4 changed files with 75 additions and 3 deletions
@ -1 +1,40 @@ |
|||||||
<p>histories works!</p> |
<div class="box" id="histories"> |
||||||
|
<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> |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
</tbody> |
||||||
|
</nz-table> |
||||||
|
|
||||||
|
</div> |
||||||
|
</div> |
@ -0,0 +1,15 @@ |
|||||||
|
.box { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
.tablebox { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
|
||||||
|
.operation { |
||||||
|
span { |
||||||
|
margin-right: 6px; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue