This commit is contained in:
Vanessa 2024-09-13 21:32:11 +08:00
parent ccf6ab6ef2
commit 80252ec1b0
5 changed files with 21 additions and 21 deletions

View file

@ -170,7 +170,7 @@ export const genCellValue = (colType: TAVCol, value: string | any) => {
}
};
} else if (colType === "date") {
const dateObj = dayjs(value)
const dateObj = dayjs(value);
if (isNaN(dateObj.valueOf())) {
cellValue = {
type: colType,