机场数据、下拉框数据绑定值

This commit is contained in:
714943302@qq.com
2018-11-23 17:58:45 +08:00
parent 52b316a230
commit 1f020ee82e
11 changed files with 65 additions and 12 deletions
@@ -32,7 +32,7 @@
<label for="terminalAreaCode">所属航站楼区域:&nbsp;&nbsp;</label>
<select class="form-control" [(ngModel)]="filterItems.terminalAreaCode" (ngModelChange)="selectChange()" id="qy">
<option value=""></option>
<option *ngFor="let item of carousels" [value]="item.terminalAreaCode" >{{item.terminalAreaCode}}</option>
<option *ngFor="let item of terminalAreas" [value]="item.terminalAreaName" >{{item.terminalAreaName}}</option>
<!-- <option value="GH">国内区域</option>
<option value="CH">国际区域</option>
<option value="QT">其他区域</option> -->