76 lines
3.9 KiB
HTML
76 lines
3.9 KiB
HTML
<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">
|
|
<select class="mr-4 form-control" [(ngModel)]="SEL_COL" name="" id="">
|
|
<option value="">选择列名</option>
|
|
<option *ngFor="let col of col_lists" [value]="col.col_code">{{col.col_chn}}</option>
|
|
</select>
|
|
<label class="radio-inline custom-radio nowrap mr-4">
|
|
<input type="radio" [(ngModel)]="FLT_POS" [value]="1" name="filter-position">
|
|
<span>过滤</span>
|
|
</label>
|
|
<label class="radio-inline custom-radio nowrap mr-4">
|
|
<input type="radio" [(ngModel)]="FLT_POS" [value]="2" name="filter-position">
|
|
<span>查找定位</span>
|
|
</label>
|
|
<input class="form-control" [(ngModel)]="SEARCH" type="text" (keyup.enter) = "inputEnter()" id="gl">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="second-condition mb-3 row">
|
|
<div class="input-container mr-4">
|
|
<label for="airlineGroupId">航空集团: </label>
|
|
<select class="form-control" [(ngModel)]="filterItems.airlineGroupId" (ngModelChange)="selectChange()" id="handkong">
|
|
<option value=""></option>
|
|
<option *ngFor="let item of airlinegroups" [value]="item.airlineGroupId" >{{item.airlineGroupName}}</option>
|
|
</select>
|
|
</div>
|
|
<div class="input-container mr-4">
|
|
<label for="briefNameChn">航班代理: </label>
|
|
<select class="form-control" [(ngModel)]="filterItems.briefNameChn" (ngModelChange)="selectChange()" id="hb">
|
|
<option value=""></option>
|
|
<option *ngFor="let items of airlines" [value]="items.briefNameChn">{{items.briefNameChn}}</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="airline-table">
|
|
<div id="table-container" class="table-container">
|
|
<table id="table" class="table table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>序号</th>
|
|
<th>航空公司代码</th>
|
|
<th>航空公司中文名</th>
|
|
<th>中文简称</th>
|
|
<th>航空公司英文名</th>
|
|
<th>英文简称</th>
|
|
<th>IATA码</th>
|
|
<th>CAA码</th>
|
|
<th>ICAO码</th>
|
|
<th>上级母公司</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngFor="let airline of render_data;let i = index" (click)="selectRow(airline)"
|
|
[ngClass]="{'selected':row_state===airline}">
|
|
<td>{{i+1}}</td>
|
|
<td>{{airline.airlineCode}}</td>
|
|
<td>{{airline.airlineName}}</td>
|
|
<td>{{airline.briefNameChn}}</td>
|
|
<td>{{airline.airlineNameEng}}</td>
|
|
<td>{{airline.briefNameEng}}</td>
|
|
<td>{{airline.airlineCodeIata}}</td>
|
|
<td>{{airline.airlineCodeCaa}}</td>
|
|
<td>{{airline.airlineCodeIcao}}</td>
|
|
<td>{{airline.parentAirlineId}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |