新增航线三字码列和冻结航班号

This commit is contained in:
zhouyuejun
2019-05-07 18:04:14 +08:00
parent 00aa4a8239
commit cdeffa3ff5
10 changed files with 135 additions and 36 deletions
+5 -4
View File
@@ -177,12 +177,12 @@
</div>
<div class="table-body" #tableBody (scroll)="handleScroll($event)">
<div class="list-view-phantom" [ngStyle]="{ 'height': wait_render_data.length * 42 + 'px' }"></div>
<table #tableContent id="table" class="table table-striped">
<table #tableContent id="table" class="table">
<tbody>
<ng-container *ngFor="let airline_row of render_data;last as isLast;index as i">
<tr *ngIf="setWidth(isLast)" (click)="selectRow(airline_row)" [ngClass]="{'selected':getSelectedRow(airline_row)}">
<td style="min-width:55px">{{start+i+1}}</td>
<td style="min-width:120px">
<td class="order-number" style="min-width:55px">{{start+i+1}}</td>
<td class="important-msg" style="min-width:120px">
<img class="mr-2" *ngIf="getVipNotes(airline_row)" src="/adminweb/assets/images/important-notes/vip.png"
alt="">
<img class="mr-2" *ngIf="getOutplanNotes(airline_row)" src="/adminweb/assets/images/important-notes/out_plan.png"
@@ -200,7 +200,8 @@
<img class="mr-2" *ngIf="getStopoverNotes(airline_row)" src="/adminweb/assets/images/important-notes/stopover.png"
alt="">
</td>
<!-- <td style="min-width:165px">{{airline_row['renderFlight']['FLID']}}</td> -->
<td class="flight-number" style="min-width:140px">{{airline_row['renderFlight']['FLNO']}}</td>
<!-- <td style="min-width:165px">{{airline_row['renderFlight']['ERUTCODE']}}</td> -->
<td *ngFor="let airline_col of render_col_lists" [ngClass]="getPosition(airline_col.COL_CODE,airline_row)"
[ngStyle]="getColor(airline_col.COL_CODE,airline_row,airline_col.COL_WIDTH)">{{airline_row['renderFlight'][airline_col.COL_CODE]}}</td>
</tr>