值机柜台优化及查找定位精确筛选
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
<input type="radio" [(ngModel)]="FLT_POS" [value]="2" name="filter-position">
|
||||
<span>查找定位</span>
|
||||
</label>
|
||||
<input class="form-control" [(ngModel)]="SEARCH" type="text" (keyup.enter) = "inputFliter()">
|
||||
<input class="form-control" [(ngModel)]="SEARCH" type="text" (keyup.enter) = "inputEnter()">
|
||||
</div>
|
||||
<div class="line-operator-right mb-3 col-xlg-4 col-mlg-4 col-xl-4 col-lg-1">
|
||||
<!-- <button type="button" class="btn btn-info mr-3">值机柜台编辑</button>
|
||||
@@ -26,7 +26,7 @@
|
||||
<div class="second-condition mb-3 row">
|
||||
<div class="input-container mr-4">
|
||||
<label for="">所属航站楼区域: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.HZ" (ngModelChange)="inputFliter()">
|
||||
<select class="form-control" [(ngModel)]="filterItems.HZ" (ngModelChange)="selectChange()">
|
||||
<option value=""></option>
|
||||
<option value="GH">国内区域</option>
|
||||
<option value="CH">国外区域</option>
|
||||
@@ -35,7 +35,7 @@
|
||||
</div>
|
||||
<div class="input-container mr-4">
|
||||
<label for="">值机岛: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.JJ" (ngModelChange)="inputFliter()">
|
||||
<select class="form-control" [(ngModel)]="filterItems.JJ" (ngModelChange)="selectChange()">
|
||||
<option value=""></option>
|
||||
<option value="A">A岛</option>
|
||||
<option value="B">B岛</option>
|
||||
@@ -44,7 +44,7 @@
|
||||
</div>
|
||||
<div class="input-container mr-4">
|
||||
<label for="">行李传送带: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.ZY" (ngModelChange)="inputFliter()">
|
||||
<select class="form-control" [(ngModel)]="filterItems.ZY" (ngModelChange)="selectChange()">
|
||||
<option value=""></option>
|
||||
<option value="X">X行李</option>
|
||||
<option value="Z">Z行李</option>
|
||||
@@ -55,18 +55,28 @@
|
||||
</div>
|
||||
|
||||
<div class="airline-table">
|
||||
<div class="table-container">
|
||||
<table class="table table-bordered table-striped">
|
||||
<div id="table-container" class="table-container">
|
||||
<table id="table" class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>序号</th>
|
||||
<!-- <th>值机柜台代码</th>
|
||||
<th>值机柜台名称</th>
|
||||
<th>值机岛</th>
|
||||
<th>行李传送带</th>
|
||||
<th>航站楼区域</th> -->
|
||||
<th *ngFor="let airline_col of checkindesk_lists">{{airline_col.COL_CN}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let airline_row of render_data;let i = index" (click)="selectRow(i)"
|
||||
[ngClass]="{'active':row_state===i}">
|
||||
<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.checkindeskCode}}</td>
|
||||
<td>{{airline_col.checkindeskName}}</td>
|
||||
<td>{{airline_col.checkinGroupCode}}</td>
|
||||
<td>{{airline_col.chutCode}}</td>
|
||||
<td>{{airline_col.terminalAreaCode}}</td> -->
|
||||
<td *ngFor="let airline_col of checkindesk_lists" [ngStyle]="{'background-color':getColor(airline_col.COL_CODE)}">{{airline_row['renderFlight'][airline_col.COL_CODE]}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user