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