值机岛优化及查找定位精确筛选

This commit is contained in:
714943302@qq.com
2018-11-16 16:56:37 +08:00
parent 9be90eabe2
commit c94ad928fe
2 changed files with 20 additions and 314 deletions
@@ -30,13 +30,17 @@
<thead>
<tr>
<th>序号</th>
<!-- <th>值机岛代码</th>
<th>值机岛名称</th> -->
<th *ngFor="let airline_col of col_lists">{{airline_col.COL_CN}}</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let airline_row of render_data;let i = index" (click)="selectRow(airline_row)"
[ngClass]="{'selected':row_state['renderFlight']['FLNO']===airline_row['renderFlight']['FLNO']}">
[ngClass]="{'selected':row_state['renderFlight']===airline_row['renderFlight']}">
<td>{{i+1}}</td>
<!-- <td>{{airline_col.checkinGroupCode}}</td>
<td>{{airline_col.checkinGroupName}}</td> -->
<td *ngFor="let airline_col of col_lists" [ngStyle]="{'background-color':getColor(airline_col.COL_CODE)}">{{airline_row['renderFlight'][airline_col.COL_CODE]}}</td>
</tr>
</tbody>