修改季度计划详细页面字段信息显示问题
This commit is contained in:
@@ -5,14 +5,14 @@
|
|||||||
<p><label>航班季度:</label>{{flight.seasonRecId}}</p>
|
<p><label>航班季度:</label>{{flight.seasonRecId}}</p>
|
||||||
<p><label>国际代码:</label>{{flight.internationalCode}}</p>
|
<p><label>国际代码:</label>{{flight.internationalCode}}</p>
|
||||||
<p><label>航空公司:</label>{{flight.airlineChnName}}</p>
|
<p><label>航空公司:</label>{{flight.airlineChnName}}</p>
|
||||||
<p><label>航线类别:</label>{{flight.routeType}}</p>
|
<p><label>航线类别:</label>{{flight.routeTypeChn}}</p>
|
||||||
<p><label>航班类别:</label>{{flight.flightTypeNameCn}}</p>
|
<p><label>航班类别:</label>{{flight.flightTypeChnName}}</p>
|
||||||
<!-- <p><label>航班任务:</label>{{flight.flightTask}}</p> -->
|
<!-- <p><label>航班任务:</label>{{flight.flightTask}}</p> -->
|
||||||
<p><label>运营日:</label>{{flight.operationDays}}</p>
|
<p><label>运营日:</label>{{flight.operationDays}}</p>
|
||||||
<p><label>开始日期:</label>{{flight.startDate}}</p>
|
<p><label>开始日期:</label>{{flight.startDate}}</p>
|
||||||
<p><label>结束日期:</label>{{flight.endDate}}</p>
|
<p><label>结束日期:</label>{{flight.endDate}}</p>
|
||||||
<p><label>航线:</label>{{flight.startAirport}}</p>
|
<p><label>航线:</label>{{flight.startAirport}}</p>
|
||||||
<p><label>到达/出发:</label>{{flight.arriOrDept}}</p>
|
<p><label>到达/出发:</label>{{flight.arriOrDeptChn}}</p>
|
||||||
<p><label>到达时间:</label>{{flight.arrivalTime}}</p>
|
<p><label>到达时间:</label>{{flight.arrivalTime}}</p>
|
||||||
<p><label>出发时间:</label>{{flight.departureTime}}</p>
|
<p><label>出发时间:</label>{{flight.departureTime}}</p>
|
||||||
<p><label>机型:</label>{{flight.aircraftTypeName}}</p>
|
<p><label>机型:</label>{{flight.aircraftTypeName}}</p>
|
||||||
|
|||||||
@@ -1,16 +1,8 @@
|
|||||||
import { Component, OnInit, ViewChild, Renderer2, ChangeDetectorRef } from '@angular/core';
|
import { Component, OnInit, ViewChild, Renderer2, ChangeDetectorRef } from '@angular/core';
|
||||||
|
|
||||||
import { OperateSpinServiceService } from '../../services/operate-spin-service.service';
|
import { OperateSpinServiceService } from '../../services/operate-spin-service.service';
|
||||||
import { HttpClientService } from '../../services/http-client.service';
|
import { HttpClientService } from '../../services/http-client.service';
|
||||||
import { BasicDataService } from '../../services/basic-data-service';
|
import { BasicDataService } from '../../services/basic-data-service';
|
||||||
|
|
||||||
import { ToastService } from '../../components/toast/toast.service';
|
|
||||||
import { ToastConfig, ToastType } from '../../components/toast/toast-model';
|
|
||||||
|
|
||||||
import * as $ from 'jquery';
|
import * as $ from 'jquery';
|
||||||
import { format } from 'util';
|
|
||||||
|
|
||||||
declare var laydate: any;
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-seasonal-plan',
|
selector: 'app-seasonal-plan',
|
||||||
@@ -24,7 +16,6 @@ export class SeasonalPlanComponent implements OnInit {
|
|||||||
private httpCilent: HttpClientService,
|
private httpCilent: HttpClientService,
|
||||||
private basicDataService: BasicDataService,
|
private basicDataService: BasicDataService,
|
||||||
private operateSpinServiceService: OperateSpinServiceService,
|
private operateSpinServiceService: OperateSpinServiceService,
|
||||||
private toastService: ToastService,
|
|
||||||
private changeDetectorRef: ChangeDetectorRef
|
private changeDetectorRef: ChangeDetectorRef
|
||||||
) {
|
) {
|
||||||
this.operateSpinServiceService.showSpin();
|
this.operateSpinServiceService.showSpin();
|
||||||
@@ -96,7 +87,6 @@ export class SeasonalPlanComponent implements OnInit {
|
|||||||
this.renderer2.setStyle(this.tableContainer.nativeElement, 'height', this.mainPage.nativeElement.offsetHeight - this.searchFilter.nativeElement.offsetHeight - 55 + 'px');
|
this.renderer2.setStyle(this.tableContainer.nativeElement, 'height', this.mainPage.nativeElement.offsetHeight - this.searchFilter.nativeElement.offsetHeight - 55 + 'px');
|
||||||
}.bind(this)
|
}.bind(this)
|
||||||
|
|
||||||
|
|
||||||
this.httpCilent.get('/adminapi/schedule/flightSchdSeason/years').toPromise().then(
|
this.httpCilent.get('/adminapi/schedule/flightSchdSeason/years').toPromise().then(
|
||||||
years => {
|
years => {
|
||||||
this.yearLists = years.body;
|
this.yearLists = years.body;
|
||||||
@@ -213,7 +203,7 @@ export class SeasonalPlanComponent implements OnInit {
|
|||||||
this.operateSpinServiceService.hideSpin();
|
this.operateSpinServiceService.hideSpin();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//查询年份事件
|
||||||
selectYearChange($event) {
|
selectYearChange($event) {
|
||||||
this.operateSpinServiceService.showSpin();
|
this.operateSpinServiceService.showSpin();
|
||||||
this.SEARCH = '';
|
this.SEARCH = '';
|
||||||
|
|||||||
Reference in New Issue
Block a user