机型、飞机优化
This commit is contained in:
@@ -20,26 +20,28 @@
|
||||
<!-- <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>
|
||||
<button type="button" class="btn btn-info mr-3">刷新</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="second-condition mb-3 row">
|
||||
<div class="input-container mr-4">
|
||||
<label for="">航空公司: </label>
|
||||
<select class="form-control" [(ngModel)]="aircrafts" (ngModelChange)="selectChange()" id="airlineCompany">
|
||||
<label for="airlineCode">航空公司: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.airlineCode" (ngModelChange)="selectChange()" id="airlineCompany">
|
||||
<option value=""></option>
|
||||
<option value="GH">海南航空公司</option>
|
||||
<option value="CH">国外航空公司</option>
|
||||
<option *ngFor="let item of aircrafts" [value]="item.airlineCode">{{item.airlineCode}}</option>
|
||||
<!-- <option value="GH">海南航空公司</option>
|
||||
<option value="CH">国外航空公司</option> -->
|
||||
</select>
|
||||
</div>
|
||||
<div class="input-container mr-4">
|
||||
<label for="">机型: </label>
|
||||
<select class="form-control" [(ngModel)]="aircrafts" (ngModelChange)="selectChange()" id="jx">
|
||||
<label for="aircraftTypeCode">机型: </label>
|
||||
<select class="form-control" [(ngModel)]="filterItems.aircraftTypeCode" (ngModelChange)="selectChange()" id="jx">
|
||||
<option value=""></option>
|
||||
<option value="A">A306</option>
|
||||
<option *ngFor="let item of aircrafts" [value]="item.aircraftTypeCode">{{item.aircraftTypeCode}}</option>
|
||||
<!-- <option value="A">A306</option>
|
||||
<option value="B">B252</option>
|
||||
<option value="C">C256</option>
|
||||
<option value="C">C256</option> -->
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
@@ -63,7 +65,7 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let aircraft of aircrafts;let i = index">
|
||||
<tr *ngFor="let aircraft of render_data;let i = index">
|
||||
<td>{{i+1}}</td>
|
||||
<td>{{aircraft.aircraftNumber}}</td>
|
||||
<td>{{aircraft.maxPassengers}}</td>
|
||||
|
||||
Reference in New Issue
Block a user