fix(form): datatime没有初始值时异常

This commit is contained in:
roymondchen 2024-10-25 17:05:36 +08:00 committed by roymondchen
parent 7964921389
commit b24b3749c4

View File

@ -32,9 +32,9 @@ const emit = defineEmits<{
useAddField(props.prop);
const value = props.model?.[props.name].toString();
const value = props.model?.[props.name]?.toString();
if (props.model) {
if (value === 'Invalid Date') {
if (!value || value === 'Invalid Date') {
props.model[props.name] = '';
} else {
props.model[props.name] = datetimeFormatter(