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 informTime" 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 rowspan="2" [nzWidth]="'16%'">
|
|
|
|
<span>审批类型</span>
|
|
|
|
</th>
|
|
|
|
<th colspan="2">办理提醒时间</th>
|
|
|
|
<th colspan="2">临期提醒时间</th>
|
|
|
|
<th rowspan="2">提交审核时间</th>
|
|
|
|
<th rowspan="2">审核状态</th>
|
|
|
|
<th rowspan="2">操作</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>默认时间</th>
|
|
|
|
<th>现用时间</th>
|
|
|
|
<th>默认时间</th>
|
|
|
|
<th>现用时间</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="table">
|
|
|
|
<tr *ngFor="let item of headerTable.data;let key = index">
|
|
|
|
<td>
|
|
|
|
{{item.licenseName}}
|
|
|
|
</td>
|
|
|
|
<td>{{item.handleRemindDaysDefault}}天</td>
|
|
|
|
<td>{{item.handleRemindDays}}天</td>
|
|
|
|
<td>{{item.closingRemindDaysDefault}}天</td>
|
|
|
|
<td>{{item.closingRemindDays}}天</td>
|
|
|
|
<td>{{item.commitTime ? (item.commitTime | date:"yyyy-MM-dd HH:mm:ss") : '/'}}</td>
|
|
|
|
<td>{{item.auditStatus | auditStatus}}</td>
|
|
|
|
<td class="operation">
|
|
|
|
<span class="blueColor" (click)="edit(item)">编辑</span>
|
|
|
|
<span class="blueColor" (click)="details(item)">审核详情</span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</nz-table>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|