增加-机场集团、国家、机型组、航空集团下拉框数据对接

This commit is contained in:
714943302@qq.com
2018-12-07 13:37:33 +08:00
parent 611227ba5c
commit 73dd1a5abd
9 changed files with 59 additions and 13 deletions
@@ -22,10 +22,9 @@
<div class="second-condition mb-3 row">
<div class="input-container mr-4">
<label for="countryId">国家:&nbsp;&nbsp;</label>
<select class="form-control" [(ngModel)]="filterItems.countryId" (ngModelChange)="selectChange()"
id="citry">
<select class="form-control" [(ngModel)]="filterItems.countryId" (ngModelChange)="selectChange()" id="citry">
<option value=""></option>
<option *ngFor="let item of citys" [value]="item.countryId">{{item.countryId}}</option>
<option *ngFor="let item of countrys" [value]="item.countryId">{{item.countryNameChn}}</option>
</select>
</div>
</div>