航站楼区域选择列名数据绑定及查找定位数据过滤筛选
This commit is contained in:
@@ -5,6 +5,8 @@
|
||||
<div class="line-operator-left input-container mb-3 col-xlg-8 col-mlg-8 col-xl-8 col-lg-10">
|
||||
<select class="mr-4 form-control" [(ngModel)]="SEL_COL" name="" id="">
|
||||
<option value="">选择列名</option>
|
||||
<option value="terminalAreaCode">航站楼区域代码</option>
|
||||
<option value="terminalAreaName">航站楼区域名称</option>
|
||||
</select>
|
||||
<label class="radio-inline custom-radio nowrap mr-4">
|
||||
<input type="radio" [(ngModel)]="FLT_POS" [value]="1" name="filter-position">
|
||||
@@ -36,7 +38,7 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let terminalArea of terminalAreas;let i = index">
|
||||
<tr *ngFor="let terminalArea of render_data;let i = index">
|
||||
<td>{{i+1}}</td>
|
||||
<td>{{terminalArea.terminalAreaCode}}</td>
|
||||
<td>{{terminalArea.terminalAreaName}}</td>
|
||||
|
||||
Reference in New Issue
Block a user