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 [nzWidth]="'16%'">区域</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%;">{{item.auditTitle || ''}}</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span *ngIf="item.auditType == 0">油站信息</span>
|
|
|
|
<span *ngIf="item.auditType == 1">更新类证照提醒时间</span>
|
|
|
|
<span *ngIf="item.auditType == 2">更新类证照</span>
|
|
|
|
<span *ngIf="item.auditType == 3">档案类证照</span>
|
|
|
|
</td>
|
|
|
|
<td>{{item.gasStation.stationName}}</td>
|
|
|
|
<td>{{item.gasStation.locationName}}</td>
|
|
|
|
<td>{{item.gasStation.companyName}}</td>
|
|
|
|
<td>{{item.committedTime | date:"yyyy/MM/dd"}}</td>
|
|
|
|
<td>
|
|
|
|
<span *ngIf="item.auditStatus == 0">无</span>
|
|
|
|
<span *ngIf="item.auditStatus == 1">审核中</span>
|
|
|
|
<span *ngIf="item.auditStatus == 2">审核通过</span>
|
|
|
|
<span *ngIf="item.auditStatus == 3">审核驳回</span>
|
|
|
|
<span *ngIf="item.auditStatus == 4">未提交审核</span>
|
|
|
|
<span *ngIf="item.auditStatus == 5">审核完成</span>
|
|
|
|
</td>
|
|
|
|
<td class="operation">
|
|
|
|
<span class="blueColor" (click)="dispose(item)">处置</span>
|
|
|
|
<span class="blueColor" (click)="details(item)">详情</span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</nz-table>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|