行李转盘优化及查找定位精确筛选

This commit is contained in:
714943302@qq.com
2018-11-19 09:41:42 +08:00
parent c0c805b49d
commit 81ebd5728e
4 changed files with 263 additions and 422 deletions
@@ -30,6 +30,8 @@
<thead>
<tr>
<th>序号</th>
<!-- <th>行李传送带代码</th>
<th>行李传送带名称</th> -->
<th *ngFor="let airline_col of chut_lists">{{airline_col.COL_CN}}</th>
</tr>
</thead>
@@ -37,6 +39,8 @@
<tr *ngFor="let airline_row of render_data;let i = index" (click)="selectRow(airline_row)"
[ngClass]="{'selected':row_state['renderFlight']===airline_row['renderFlight']}">
<td>{{i+1}}</td>
<!-- <td>{{airline_col.chutCode}}</td>
<td>{{airline_col.chutName}}</td> -->
<td *ngFor="let airline_col of chut_lists" [ngStyle]="{'background-color':getColor(airline_col.COL_CODE)}">{{airline_row['renderFlight'][airline_col.COL_CODE]}}</td>
</tr>
</tbody>