mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-02-03 02:18:40 +08:00
fix: fix form submit error
This commit is contained in:
parent
1db72c8fe1
commit
94bf854dd9
@ -53,8 +53,8 @@
|
||||
const formModel = reactive({});
|
||||
|
||||
const actionState = reactive({
|
||||
resetAction: {},
|
||||
submitAction: {},
|
||||
resetAction: () => {},
|
||||
submitAction: () => {},
|
||||
});
|
||||
|
||||
const advanceState = reactive<AdvanceState>({
|
||||
|
@ -150,7 +150,11 @@ export default defineComponent({
|
||||
function handleValue(component: ComponentType, field: string) {
|
||||
const val = (props.formModel as any)[field];
|
||||
if (['Input', 'InputPassword', 'InputSearch', 'InputTextArea'].includes(component)) {
|
||||
return isNumber(val) && val ? `${val}` : val;
|
||||
if (val && isNumber(val)) {
|
||||
(props.formModel as any)[field] = `${val}`;
|
||||
return `${val}`;
|
||||
}
|
||||
return val;
|
||||
}
|
||||
return val;
|
||||
}
|
||||
|
@ -43,7 +43,7 @@ export function useFormAction({
|
||||
Object.keys(formModel).forEach((key) => {
|
||||
(formModel as any)[key] = defaultValueRef.value[key];
|
||||
});
|
||||
formEl.clearValidate();
|
||||
clearValidate();
|
||||
emit('reset', toRaw(formModel));
|
||||
// return values;
|
||||
submitOnReset && handleSubmit();
|
||||
@ -187,7 +187,7 @@ export function useFormAction({
|
||||
return formElRef.value.validate(nameList);
|
||||
}
|
||||
|
||||
function clearValidate(name: string | string[]) {
|
||||
function clearValidate(name?: string | string[]) {
|
||||
if (!formElRef.value) return;
|
||||
formElRef.value.clearValidate(name);
|
||||
}
|
||||
@ -205,7 +205,7 @@ export function useFormAction({
|
||||
const formEl = unref(formElRef);
|
||||
if (!formEl) return;
|
||||
try {
|
||||
const values = await formEl.validate();
|
||||
const values = await validate();
|
||||
const res = handleFormValues(values);
|
||||
emit('submit', res);
|
||||
} catch (error) {}
|
||||
|
Loading…
Reference in New Issue
Block a user