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: 30px;">审批信息</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: 30px;">{{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><label *ngIf="item.gasStation">{{item.gasStation.stationName}}</label></td>
|
|
|
|
<td><label *ngIf="item.gasStation">{{item.gasStation.locationName}}</label></td>
|
|
|
|
<td>
|
|
|
|
<ng-container *ngIf="item.gasStation; else elseTemplate">
|
|
|
|
<label>{{item.gasStation.companyName}}</label>
|
|
|
|
</ng-container>
|
|
|
|
<ng-template #elseTemplate>
|
|
|
|
<label>{{item.organization ? item.organization.displayName : null}}</label>
|
|
|
|
</ng-template>
|
|
|
|
</td>
|
|
|
|
<!-- <td>{{item.committedTime | date:"yyyy/MM/dd HH:mm:ss" }}</td> -->
|
|
|
|
<td>{{item.auditStatusDesc}}</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>
|