fix: 校验类型错误

pull/38/head
xingyu 2023-10-10 11:54:04 +08:00
parent eb96488317
commit b4f6ef1465
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ export function setComponentRuleType(rule: Rule, component: ComponentType, value
export function processDateValue(attr: Recordable, component: string) {
const { valueFormat, value } = attr
if (valueFormat)
attr.value = isObject(value) ? dateUtil(value as any).format(valueFormat) : value
attr.value = isObject(value) ? dateUtil(value as unknown as Date).format(valueFormat) : value
else if (DATE_TYPE.includes(component) && value)
attr.value = dateUtil(attr.value)
}

View File

@ -428,7 +428,7 @@ function getDefaultValue(
}
function checkIsRangeSlider(schema: FormSchema) {
if (schema.component === 'Slider' && schema.componentProps && schema.componentProps.range)
if (schema.component === 'Slider' && schema.componentProps && 'range' in schema.componentProps)
return true
}