Browse Source

[完善]待办和审核记录列表字段显隐

beijing
邵佳豪 3 years ago
parent
commit
ad0116cb82
  1. 8
      src/app/pages/audit/audit-ing/audit-ing.component.html
  2. 4
      src/app/pages/audit/audit-ing/audit-ing.component.ts
  3. 8
      src/app/pages/audit/audit-record/audit-record.component.html

8
src/app/pages/audit/audit-ing/audit-ing.component.html

@ -8,8 +8,8 @@
<span style="margin-left: 30px;">审批类型</span>
</th>
<th>审批信息</th>
<th>油站名称</th>
<th [nzWidth]="'16%'">区域名称</th>
<th *ngIf="level != 1 ">油站名称</th>
<th [nzWidth]="'16%'" *ngIf="level != 1 ">区域名称</th>
<th>公司名称</th>
<!-- <th>提交时间</th> -->
<th>审批状态</th>
@ -28,8 +28,8 @@
<span *ngIf="item.auditType == 3">资产类证照</span>
<span *ngIf="item.auditType == 4">用户信息</span>
</td>
<td><label *ngIf="item.gasStation">{{item.gasStation.stationName}}</label></td>
<td><label *ngIf="item.gasStation">{{item.gasStation.locationName}}</label></td>
<td *ngIf="level != 1 "><label *ngIf="item.gasStation">{{item.gasStation.stationName}}</label></td>
<td *ngIf="level != 1 "><label *ngIf="item.gasStation">{{item.gasStation.locationName}}</label></td>
<td>
<ng-container *ngIf="item.gasStation; else elseTemplate">
<label>{{item.gasStation.companyName}}</label>

4
src/app/pages/audit/audit-ing/audit-ing.component.ts

@ -23,6 +23,8 @@ export class AuditIngComponent implements OnInit {
tableScrollHeight
resizeListener
level
ngOnInit(): void {
this.tableScrollHeight = '100px'
// 页面监听
@ -31,6 +33,8 @@ export class AuditIngComponent implements OnInit {
this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - tableHeader - 10) + 'px'
});
this.getStationList()
this.level = JSON.parse(sessionStorage.getItem('userdata')).organization.level
}
ngOnDestroy(): void {
this.resizeListener.unsubscribe()

8
src/app/pages/audit/audit-record/audit-record.component.html

@ -95,8 +95,8 @@
<span style="margin-left: 30px;">审批类型</span>
</th>
<th>审批信息</th>
<!-- <th>油站名称</th>
<th [nzWidth]="'16%'">区域</th> -->
<th *ngIf="!level">油站名称</th>
<th *ngIf="!level">区域名称</th>
<th>公司名称</th>
<th>申请人</th>
<th>审批时间</th>
@ -118,8 +118,8 @@
<span *ngIf="item.auditType == 3">资产类证照</span>
<span *ngIf="item.auditType == 4">用户信息</span>
</td>
<!-- <td><label *ngIf="item.gasStation">{{item.gasStation.stationName}}</label></td>
<td><label *ngIf="item.gasStation">{{item.gasStation.locationName}}</label></td> -->
<td *ngIf="!level"><label *ngIf="item.gasStation">{{item.gasStation.stationName}}</label></td>
<td *ngIf="!level"><label *ngIf="item.gasStation">{{item.gasStation.locationName}}</label></td>
<td nzEllipsis>
<ng-container *ngIf="item.gasStation; else elseTemplate">
<label [title]="item.gasStation.companyName">{{item.gasStation.companyName}}</label>

Loading…
Cancel
Save