中化加油站项目
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.
 
 
 
 
 
 

53 lines
2.5 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: 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>