Files
airport-chengdu-web/src/app/utils/sodt-formatter.ts
T
2018-11-21 18:55:57 +08:00

11 lines
241 B
TypeScript

/**
* 计划到达/出发时间显示转换
*/
import timeFormatter from './time-formatter';
export default function (flight) {
if (flight['SODT']) {
return timeFormatter(flight['SODT']);
} else {
return '';
}
}