机场数据、下拉框数据绑定值
This commit is contained in:
@@ -27,6 +27,9 @@ public filterItems = {
|
||||
chutCode:'',
|
||||
}
|
||||
|
||||
checkinGroups : Array<any>; //值机岛
|
||||
terminalAreas : Array<any>; //所属航站楼区域
|
||||
chuts : Array<any>; //行李传送带
|
||||
checkinDesks : Array<any>;
|
||||
public row_state: any = { renderFlight: {} };
|
||||
public render_data: Array<object> = []; //显示数据,即需要显示的数据
|
||||
@@ -39,6 +42,27 @@ ngOnInit() {
|
||||
this.render_data = this.checkinDesks;
|
||||
}
|
||||
)
|
||||
//所属航站楼区域
|
||||
this.terminalAreas = this.basicDataService.terminal_area;
|
||||
this.basicDataService.terminal_area_subject.subscribe(
|
||||
data=>{
|
||||
this.terminalAreas = data;
|
||||
}
|
||||
)
|
||||
//值机岛
|
||||
this.checkinGroups = this.basicDataService.checkin_group;
|
||||
this.basicDataService.checkin_group_subject.subscribe(
|
||||
data=>{
|
||||
this.checkinGroups = data;
|
||||
}
|
||||
)
|
||||
//行李传送带
|
||||
this.chuts = this.basicDataService.chut;
|
||||
this.basicDataService.chut_subject.subscribe(
|
||||
data=>{
|
||||
this.chuts = data;
|
||||
}
|
||||
)
|
||||
/**
|
||||
* 固定表头
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user