luocong2016
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
src/components/Form/src/hooks/useFormEvents.ts
|
|
|
@ -314,6 +314,9 @@ export function useFormEvents({ |
|
|
|
const res = handleFormValues(values); |
|
|
|
emit('submit', res); |
|
|
|
} catch (error: any) { |
|
|
|
if (error?.outOfDate === false && error?.errorFields) { |
|
|
|
return; |
|
|
|
} |
|
|
|
throw new Error(error); |
|
|
|
} |
|
|
|
} |
|
|
|
|