11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
/**
|
|
* 预计到达/出发时间显示转换
|
|
*/
|
|
import timeFormatter from './time-formatter';
|
|
export default function (flight) {
|
|
if (flight['ESTT']) {
|
|
return timeFormatter(flight['ESTT']);
|
|
} else {
|
|
return '';
|
|
}
|
|
} |