航班信息显示转换

This commit is contained in:
zhouyuejun
2018-11-21 18:55:57 +08:00
parent 526cfe1251
commit 4582b465ee
36 changed files with 862 additions and 401 deletions
+19
View File
@@ -0,0 +1,19 @@
/**
* 行李传送带号显示转换
*/
export default function (flight) {
if(flight['CHDT']){
if(Array.isArray(flight['CHDT'])&&flight['CHDT'].length>0){
let chdt = [];
for (let i = 0; i < flight['CHDT'].length; i++) {
chdt.push(flight['CHDT'][i]['CHUT']);
}
let set = new Set(chdt);
return Array.from(set).join(',');
}else{
return flight['CHDT']['CHUT']
}
}else{
return '';
}
}