Browse Source

feat: 使用useForm时调用setFieldsValue后,组件的onChange未主动触发

pull/768/head
cKey 3 years ago
parent
commit
ec0606f9b8
  1. 18
      apps/vue/src/components/Form/src/hooks/useFormEvents.ts

18
apps/vue/src/components/Form/src/hooks/useFormEvents.ts

@ -77,6 +77,11 @@ export function useFormEvents({
const hasKey = Reflect.has(values, key); const hasKey = Reflect.has(values, key);
value = handleInputNumberValue(schema?.component, value); value = handleInputNumberValue(schema?.component, value);
const { componentProps } = schema || {};
let _props = componentProps as any;
if (typeof componentProps === 'function') {
_props = _props({ formModel: unref(formModel) });
}
// 0| '' is allow // 0| '' is allow
if (hasKey && fields.includes(key)) { if (hasKey && fields.includes(key)) {
// time type // time type
@ -86,17 +91,20 @@ export function useFormEvents({
for (const ele of value) { for (const ele of value) {
arr.push(ele ? dateUtil(ele) : null); arr.push(ele ? dateUtil(ele) : null);
} }
formModel[key] = arr; unref(formModel)[key] = arr;
} else { } else {
const { componentProps } = schema || {}; const { componentProps } = schema || {};
let _props = componentProps as any; let _props = componentProps as any;
if (typeof componentProps === 'function') { if (typeof componentProps === 'function') {
_props = _props({ formModel }); _props = _props({ formModel });
} }
formModel[key] = value ? (_props?.valueFormat ? value : dateUtil(value)) : null; unref(formModel)[key] = value ? (_props?.valueFormat ? value : dateUtil(value)) : null;
} }
} else { } else {
formModel[key] = value; unref(formModel)[key] = value;
}
if (_props?.onChange) {
_props?.onChange(value);
} }
validKeys.push(key); validKeys.push(key);
} else { } else {
@ -104,14 +112,14 @@ export function useFormEvents({
try { try {
const value = nestKey.split('.').reduce((out, item) => out[item], values); const value = nestKey.split('.').reduce((out, item) => out[item], values);
if (isDef(value)) { if (isDef(value)) {
formModel[nestKey] = value; unref(formModel)[nestKey] = unref(value);
validKeys.push(nestKey); validKeys.push(nestKey);
} }
} catch (e) { } catch (e) {
// key not exist // key not exist
if (isDef(defaultValueRef.value[nestKey])) { if (isDef(defaultValueRef.value[nestKey])) {
//formModel[nestKey] = defaultValueRef.value[nestKey]; //formModel[nestKey] = defaultValueRef.value[nestKey];
formModel[nestKey] = cloneDeep(defaultValueRef.value[nestKey]); unref(formModel)[nestKey] = cloneDeep(unref(defaultValueRef.value[nestKey]));
} }
} }
}); });

Loading…
Cancel
Save