2018-11-22 14:17:48 +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" >
< select class = "mr-4 form-control" name = "" id = "" >
< option value = "" > 选择列名</ 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 ()" >
</ 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>
<button type="button" class="btn btn-info mr-3">季度计划发布</button>
<button type="button" class="btn btn-info mr-3">刷新数据</button>
<button type="button" class="btn btn-info mr-3">季度计划维护</button> -->
< button type = "button" class = "btn btn-info mr-3" > 刷新</ button >
</ div >
</ div >
< div class = "second-condition mb-3 row" >
< div class = "input-container mr-4" >
< label for = "" > 航空公司: </ label >
< select class = "form-control" [( ngModel )]=" filterItems . HZ " ( ngModelChange )=" selectChange ()" >
< option value = "" ></ option >
< option value = "GH" > 国内区域</ option >
< option value = "CH" > 国际区域</ option >
< option value = "QT" > 其他区域</ option >
</ select >
</ div >
< div class = "input-container mr-4" >
< label for = "" > 航线类别: </ label >
< select class = "form-control" [( ngModel )]=" filterItems . ZY " ( ngModelChange )=" selectChange ()" >
< option value = "" ></ option >
< option value = "K" > 可用</ option >
< option value = "R" > 不可用</ option >
</ select >
</ div >
< div class = "input-container mr-4" >
< label for = "" > 航班类别: </ label >
< select class = "form-control" ( ngModelChange )=" selectChange ()" >
< option value = "" ></ option >
</ select >
</ div >
< div class = "input-container mr-4" >
< label for = "" > 到达/出发: </ label >
< select class = "form-control" ( ngModelChange )=" selectChange ()" >
< option value = "" ></ option >
</ select >
</ div >
< div class = "input-container mr-4" >
< label for = "" > 航班任务: </ label >
< select class = "form-control" ( ngModelChange )=" selectChange ()" >
< option value = "" ></ option >
</ select >
</ div >
</ div >
< div class = "third-condition row" >
< label class = "radio-inline custom-checkbox nowrap mr-4" >
< input type = "checkbox" >
< span > 航班关联信息</ span >
</ label >
< label class = "radio-inline custom-checkbox nowrap mr-4" >
< input type = "checkbox" >
< span > 详细信息</ span >
</ label >
</ 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 * ngFor = "let airline_col of seasonal_lists" > {{airline_col.COL_CN}}</ th >
</ tr >
</ thead >
< tbody >
< tr * ngFor = "let airline_row of render_data;let i = index" ( click )=" selectRow ( airline_row )"
[ ngClass ]="{' selected ' :row_state [' renderFlight ']=== airline_row [' renderFlight ']}" >
< td > {{i+1}}</ td >
<!-- <td>{{airline_col.gateCode}}</td>
<td>{{airline_col.gateName}}</td>
<td>{{airline_col.terminalAreaCode}}</td>
<td>{{airline_col.gateStatus}}</td> -->
< td * ngFor = "let airline_col of seasonal_lists" [ ngStyle ]="{' background-color ' :getColor ( airline_col . COL_CODE )}" > {{airline_row['renderFlight'][airline_col.COL_CODE]}}</ td >
</ tr >
</ tbody >
</ table >
</ div >
</ div >
</ div >
</ div >