/* * @Author: 赵伟 * @Date: 2024-04-28 14:18:11 * @Description: 自定义 Table 日期类单元格 */ import dayjs from 'dayjs'; function DateTableCell(text?: string | null) { if (text === undefined || text === null || text === '') { return --; } if (!dayjs(text).isValid()) { return 无效的日期; } return {dayjs(text).format('YYYY-MM-DD HH:mm:ss')}; } export default DateTableCell;