@innoways/utils
Version:
drip-form通用方法
36 lines (34 loc) • 577 B
text/typescript
export const unitedSchema = {
type: 'string',
title: 'Input Box',
minLength: 1,
// fieldKey:'a',
errMsg: {
minLength: '最小1',
},
ui: {
type: 'text',
style: { width: '100%' },
},
}
export const parsedSchema = {
dataSchema: {
type: 'string',
title: 'Input Box',
minLength: 1,
errorMessage: {
minLength: '最小1',
},
},
uiSchema: {
type: 'text',
// fieldKey:'a',
style: { width: '100%' },
},
typePath: {
// type:'string',
// unitedSchemaKey:'',
// fatherKey:''
},
customProps: [],
}