航班定位实现
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<div class="search-filter mb-3" #searchFilter>
|
||||
<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 [(ngModel)]="SEL_COL" class="mr-4 form-control" name="" id="">
|
||||
<select [(ngModel)]="SEL_COL" class="mr-4 form-control" (ngModelChange)="resetPositionArray()" name="" id="">
|
||||
<option value="">选择列名</option>
|
||||
<option *ngFor="let airline_col of render_col_lists" [value]="airline_col.COL_CODE">{{airline_col.COL_CN}}</option>
|
||||
</select>
|
||||
@@ -15,7 +15,7 @@
|
||||
<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()">
|
||||
<input class="form-control" [(ngModel)]="SEARCH" (ngModelChange)="resetPositionArray()" type="text" (keyup.enter)="inputEnter()">
|
||||
</div>
|
||||
<div class="line-operator-right mb-3 col-xlg-4 col-mlg-4 col-xl-4 col-lg-2">
|
||||
<button type="button" class="btn btn-info mr-2" (click)="toggleFilter()">{{filterClose?'展开':'关闭'}}</button>
|
||||
@@ -101,42 +101,6 @@
|
||||
<option *ngFor="let anget of flightAgents" [value]="anget.oGId">{{anget.flightAgentName}}</option>
|
||||
</select>
|
||||
</div>
|
||||
<!-- <div class="input-container mr-4">
|
||||
<label for="">前时间段: </label>
|
||||
<select [(ngModel)]="filterItems.Start_time" (ngModelChange)="selectChange('filter')" class="form-control">
|
||||
<option value=""></option>
|
||||
<option value="1">前1小时</option>
|
||||
<option value="2">前2小时</option>
|
||||
<option value="3">前3小时</option>
|
||||
<option value="4">前4小时</option>
|
||||
<option value="5">前5小时</option>
|
||||
<option value="6">前6小时</option>
|
||||
<option value="7">前7小时</option>
|
||||
<option value="8">前8小时</option>
|
||||
<option value="9">前9小时</option>
|
||||
<option value="10">前10小时</option>
|
||||
<option value="11">前11小时</option>
|
||||
<option value="12">前12小时</option>
|
||||
</select>
|
||||
</div> -->
|
||||
<!-- <div class="input-container mr-4">
|
||||
<label for="">后时间段: </label>
|
||||
<select [(ngModel)]="filterItems.End_time" (ngModelChange)="selectChange('filter')" class="form-control">
|
||||
<option value=""></option>
|
||||
<option value="1">后1小时</option>
|
||||
<option value="2">后2小时</option>
|
||||
<option value="3">后3小时</option>
|
||||
<option value="4">后4小时</option>
|
||||
<option value="5">后5小时</option>
|
||||
<option value="6">后6小时</option>
|
||||
<option value="7">后7小时</option>
|
||||
<option value="8">后8小时</option>
|
||||
<option value="9">后9小时</option>
|
||||
<option value="10">后10小时</option>
|
||||
<option value="11">后11小时</option>
|
||||
<option value="12">后12小时</option>
|
||||
</select>
|
||||
</div> -->
|
||||
</div>
|
||||
|
||||
<div [ngClass]="{'filterClose-c':filterClose,'filterClose-o':!filterClose}" class="third-condition row">
|
||||
|
||||
Reference in New Issue
Block a user