/** * 最后通知时间显示转换 */ import timeFormatter from './time-formatter'; export default function (flight) { if (flight['LACL']) { return timeFormatter(flight['LACL']); } else { return ''; } }