机场数据接口数据对接
This commit is contained in:
@@ -14,31 +14,33 @@
|
||||
<input type="radio" [(ngModel)]="FLT_POS" [value]="2" name="filter-position">
|
||||
<span>查找定位</span>
|
||||
</label>
|
||||
<input class="form-control" [(ngModel)]="SEARCH" type="text" (keyup.enter) = "inputEnter()">
|
||||
<input class="form-control" [(ngModel)]="SEARCH" type="text" (keyup.enter) = "inputEnter()" id="inputerInfo">
|
||||
</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>
|
||||
<button type="button" class="btn btn-info mr-3">打印</button> -->
|
||||
<button type="button" class="btn btn-info mr-3">刷新</button>
|
||||
<button type="button" class="btn btn-info mr-3" (click)="clearFiter()">刷新</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="second-condition mb-3 row">
|
||||
<div class="input-container mr-4">
|
||||
<label for="">所属航站楼区域: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.HZ" (ngModelChange)="selectChange()">
|
||||
<label for="terminalAreaCode">所属航站楼区域: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.terminalAreaCode" (ngModelChange)="selectChange()" id="qy">
|
||||
<option value=""></option>
|
||||
<option value="GH">国内区域</option>
|
||||
<option *ngFor="let item of carousels" [value]="item.terminalAreaCode" >{{item.terminalAreaCode}}</option>
|
||||
<!-- <option value="GH">国内区域</option>
|
||||
<option value="CH">国际区域</option>
|
||||
<option value="QT">其他区域</option>
|
||||
<option value="QT">其他区域</option> -->
|
||||
</select>
|
||||
</div>
|
||||
<div class="input-container mr-4">
|
||||
<label for="">资源状态: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.ZY" (ngModelChange)="selectChange()">
|
||||
<label for="carouselStatus">资源状态: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.carouselStatus" (ngModelChange)="selectChange()" id="zy">
|
||||
<option value=""></option>
|
||||
<option value="K">可用</option>
|
||||
<option value="R">不可用</option>
|
||||
<option *ngFor="let item of carousels" [value]="item.carouselStatus" >{{item.carouselStatus}}</option>
|
||||
<!-- <option value="K">可用</option>
|
||||
<option value="R">不可用</option> -->
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
@@ -50,22 +52,21 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>序号</th>
|
||||
<!-- <th>行李转盘代码</th>
|
||||
<th>行李转盘代码</th>
|
||||
<th>行李转盘名称</th>
|
||||
<th>航站楼区域</th>
|
||||
<th>资源状态</th> -->
|
||||
<th *ngFor="let airline_col of carousel_lists">{{airline_col.COL_CN}}</th>
|
||||
<th>资源状态</th>
|
||||
<!-- <th *ngFor="let airline_col of carousel_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']===airline_row['renderFlight']}">
|
||||
<tr *ngFor="let carousel of render_data;let i = index">
|
||||
<td>{{i+1}}</td>
|
||||
<!-- <td>{{airline_col.carouselCode}}</td>
|
||||
<td>{{airline_col.carouselName}}</td>
|
||||
<td>{{airline_col.terminalAreaCode}}</td>
|
||||
<td>{{airline_col.carouselStatus}}</td> -->
|
||||
<td *ngFor="let airline_col of carousel_lists" [ngStyle]="{'background-color':getColor(airline_col.COL_CODE)}">{{airline_row['renderFlight'][airline_col.COL_CODE]}}</td>
|
||||
<td>{{carousel.carouselCode}}</td>
|
||||
<td>{{carousel.carouselName}}</td>
|
||||
<td>{{carousel.terminalAreaCode}}</td>
|
||||
<td>{{carousel.carouselStatus}}</td>
|
||||
<!-- <td *ngFor="let airline_col of carousel_lists" [ngStyle]="{'background-color':getColor(airline_col.COL_CODE)}">{{airline_row['renderFlight'][airline_col.COL_CODE]}}</td> -->
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user