2018-11-13 15:34:03 +08:00
|
|
|
<div class="main-page">
|
|
|
|
|
<div class="page-content">
|
|
|
|
|
<div class="search-filter mb-3">
|
|
|
|
|
<div class="first-condition row">
|
|
|
|
|
<div class="line-operator-left input-container mb-3 col-xlg-8 col-mlg-8 col-xl-8 col-lg-10">
|
2018-11-14 17:30:01 +08:00
|
|
|
<select class="mr-4 form-control" [(ngModel)]="SEL_COL" name="" id="">
|
2018-11-13 15:34:03 +08:00
|
|
|
<option value="">选择列名</option>
|
2018-11-23 12:00:45 +08:00
|
|
|
<option value="terminalCode">航站楼代码</option>
|
|
|
|
|
<option value="terminalName">航站楼名称</option>
|
2018-11-13 15:34:03 +08:00
|
|
|
</select>
|
|
|
|
|
<label class="radio-inline custom-radio nowrap mr-4">
|
2018-11-14 17:30:01 +08:00
|
|
|
<input type="radio" [(ngModel)]="FLT_POS" [value]="1" name="filter-position">
|
2018-11-14 15:44:06 +08:00
|
|
|
<span>过滤</span>
|
2018-11-14 17:30:01 +08:00
|
|
|
</label>
|
|
|
|
|
<label class="radio-inline custom-radio nowrap mr-4">
|
|
|
|
|
<input type="radio" [(ngModel)]="FLT_POS" [value]="2" name="filter-position">
|
2018-11-14 15:44:06 +08:00
|
|
|
<span>查找定位</span>
|
2018-11-14 17:30:01 +08:00
|
|
|
</label>
|
2018-11-21 18:25:07 +08:00
|
|
|
<input class="form-control" [(ngModel)]="SEARCH" type="text" (keyup.enter) = "inputEnter()" id="inputerInfo">
|
2018-11-13 15:34:03 +08:00
|
|
|
</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>
|
|
|
|
|
<button type="button" class="btn btn-info mr-3">打印</button> -->
|
2018-11-23 12:00:45 +08:00
|
|
|
<button type="button" class="btn btn-info mr-3">刷新</button>
|
2018-11-13 15:34:03 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="airline-table">
|
2018-11-19 09:24:20 +08:00
|
|
|
<div id="table-container" class="table-container">
|
|
|
|
|
<table id="table" class="table table-bordered table-striped">
|
2018-11-13 15:34:03 +08:00
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>序号</th>
|
2018-11-21 18:25:07 +08:00
|
|
|
<th>航站楼代码</th>
|
|
|
|
|
<th>航站楼名称</th>
|
|
|
|
|
<!-- <th *ngFor="let airline_col of terminal_lists">{{airline_col.COL_CN}}</th> -->
|
2018-11-13 15:34:03 +08:00
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
2018-11-23 12:00:45 +08:00
|
|
|
<tr *ngFor="let terminal of render_data;let i = index" (click)="selectRow(terminal)"
|
|
|
|
|
[ngClass]="{'selected':row_state===terminal}">
|
2018-11-13 15:34:03 +08:00
|
|
|
<td>{{i+1}}</td>
|
2018-11-21 18:25:07 +08:00
|
|
|
<td>{{terminal.terminalCode}}</td>
|
|
|
|
|
<td>{{terminal.terminalName}}</td>
|
|
|
|
|
<!-- <td *ngFor="let airline_col of terminal_lists" [ngStyle]="{'background-color':getColor(airline_col.COL_CODE)}">{{airline_row['renderFlight'][airline_col.COL_CODE]}}</td> -->
|
2018-11-13 15:34:03 +08:00
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|