fix: formItem formItemProps 调研关联性

This commit is contained in:
xuziqiang
2024-05-29 17:24:26 +08:00
parent 4614c8699f
commit 620fbd509a
5 changed files with 17 additions and 7 deletions

View File

@@ -293,9 +293,13 @@
},
onValidateChange: (text: Object | undefined) => {
if (isUndefined(text)) text = {};
console.error(text, 'onValidateChange');
validateRef.value = text;
},
};
console.log(on, 'checkON');
return {
...propsData,
...on,

View File

@@ -1,5 +1,3 @@
import type { UnwrapRef, Ref } from 'vue';
import { unref, nextTick, toRaw } from 'vue';
import { get, isArray, isNil, isUndefined, isPlainObject, forEach, isFunction } from 'lodash-es';
@@ -173,7 +171,9 @@ export function useFormModel({ schemas, formModel, formElRef, emit }: useFormMod
//select allowClear时值被设为undefined
unref(formModel)[key] = value;
}
validateFields([key]).catch(() => {});
validateFields([key]).catch((err) => {
console.error(`${key}:`, err);
});
// console.log('formModel', key, value, formModel.value);
// if (fieldRules(key)) {
// console.log('getNamePath', getNamePath.value);