机场数据接口数据对接
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) = "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>
|
||||
@@ -25,30 +25,33 @@
|
||||
|
||||
<div class="second-condition mb-3 row">
|
||||
<div class="input-container mr-4">
|
||||
<label for="">所属航站楼区域: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.ZY" (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 items of stands" [value]="items.terminalAreaCode">{{items.terminalAreaCode}}</option>
|
||||
<!-- <option value="GH">国内区域</option>
|
||||
<option value="CH">国际区域</option>
|
||||
<option value="QH">其他区域</option>
|
||||
<option value="QH">其他区域</option> -->
|
||||
</select>
|
||||
</div>
|
||||
<div class="input-container mr-4">
|
||||
<label for="">机位类型: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.HZ" (ngModelChange)="selectChange()">
|
||||
<label for="standType">机位类型: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.standType" (ngModelChange)="selectChange()" id="jtype">
|
||||
<option value=""></option>
|
||||
<option value="YJW">远机位</option>
|
||||
<option *ngFor="let items of stands" [value]="items.standType">{{items.standType}}</option>
|
||||
<!-- <option value="YJW">远机位</option>
|
||||
<option value="JJW">近机位</option>
|
||||
<option value="GWJW">过夜机位</option>
|
||||
<option value="ZJW">专机位</option>
|
||||
<option value="ZJW">专机位</option> -->
|
||||
</select>
|
||||
</div>
|
||||
<div class="input-container mr-4">
|
||||
<label for="">资源状态: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.ZYZT" (ngModelChange)="selectChange()">
|
||||
<label for="standStatus">资源状态: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.standStatus" (ngModelChange)="selectChange()" id="zystatus">
|
||||
<option value=""></option>
|
||||
<option value="K">可用</option>
|
||||
<option value="R">不可用</option>
|
||||
<option *ngFor="let items of stands" [value]="items.standStatus">{{items.standStatus}}</option>
|
||||
<!-- <option value="K">可用</option>
|
||||
<option value="R">不可用</option> -->
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
@@ -60,24 +63,23 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>序号</th>
|
||||
<!-- <th>机位代码</th>
|
||||
<th>机位代码</th>
|
||||
<th>机位名称</th>
|
||||
<th>机位类型</th>
|
||||
<th>资源状态</th>
|
||||
<th>航站楼区域</th> -->
|
||||
<th *ngFor="let airline_col of stand_lists">{{airline_col.COL_CN}}</th>
|
||||
<th>航站楼区域</th>
|
||||
<!-- <th *ngFor="let airline_col of stand_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 stand of render_data;let i = index">
|
||||
<td>{{i+1}}</td>
|
||||
<!-- <td>{{airline_col.standCode}}</td>
|
||||
<td>{{airline_col.standName}}</td>
|
||||
<td>{{airline_col.standType}}</td>
|
||||
<td>{{airline_col.standStatus}}</td>
|
||||
<td>{{airline_col.terminalAreaCode}}</td> -->
|
||||
<td *ngFor="let airline_col of stand_lists" [ngStyle]="{'background-color':getColor(airline_col.COL_CODE)}">{{airline_row['renderFlight'][airline_col.COL_CODE]}}</td>
|
||||
<td>{{stand.standCode}}</td>
|
||||
<td>{{stand.standName}}</td>
|
||||
<td>{{stand.standType}}</td>
|
||||
<td>{{stand.standStatus}}</td>
|
||||
<td>{{stand.terminalAreaCode}}</td>
|
||||
<!-- <td *ngFor="let airline_col of stand_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