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