feat: 多路径字段获取值 (#2664)

This commit is contained in:
oooplz 2023-04-04 16:59:43 +08:00 committed by GitHub
parent 4418eccfab
commit af54b0fbc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -14,7 +14,7 @@ import {
import { deepMerge } from '/@/utils';
import { dateItemType, handleInputNumberValue, defaultValueComponents } from '../helper';
import { dateUtil } from '/@/utils/dateUtil';
import { cloneDeep, set, uniqBy } from 'lodash-es';
import { cloneDeep, set, uniqBy, get } from 'lodash-es';
import { error } from '/@/utils/log';
interface UseFormActionContext {
@ -112,9 +112,8 @@ export function useFormEvents({
const validKeys: string[] = [];
fields.forEach((key) => {
const schema = unref(getSchema).find((item) => item.field === key);
let value = values[key];
const hasKey = Reflect.has(values, key);
let value = get(values, key);
const hasKey = !!get(values, key);
value = handleInputNumberValue(schema?.component, value);
const { componentProps } = schema || {};