wip: Form升级中

This commit is contained in:
kailong321200875
2023-04-27 09:42:22 +08:00
parent 28d1654b20
commit 89844e441d
4 changed files with 39 additions and 33 deletions

View File

@@ -174,7 +174,7 @@ export default defineComponent({
// 单独给只有options属性的组件做判断
const notRenderOptions = ['SelectV2', 'Cascader', 'Transfer']
const slotsMap: Recordable = {
...setItemComponentSlots(slots, item?.componentProps?.slots, item.field)
...setItemComponentSlots(unref(formModel), item?.componentProps?.slots)
}
if (
item?.component !== 'SelectV2' &&

View File

@@ -4,6 +4,7 @@ import { getSlot } from '@/utils/tsxHelper'
import { PlaceholderMoel } from './types'
import { FormSchema } from '@/types/form'
import { ColProps } from '@/types/components'
import { isFunction } from '@/utils/is'
const { t } = useI18n()
@@ -84,21 +85,21 @@ export const setComponentProps = (item: FormSchema): Recordable => {
/**
*
* @param slots 插槽
* @param formModel 表单数据
* @param slotsProps 插槽属性
* @param field 字段名
*/
export const setItemComponentSlots = (
slots: Slots,
slotsProps: Recordable = {},
field: string
): Recordable => {
export const setItemComponentSlots = (formModel: any, slotsProps: Recordable = {}): Recordable => {
const slotObj: Recordable = {}
for (const key in slotsProps) {
if (slotsProps[key]) {
// 由于组件有可能重复,需要有一个唯一的前缀
slotObj[key] = (data: Recordable) => {
return getSlot(slots, `${field}-${key}`, data)
if (isFunction(slotsProps[key])) {
slotObj[key] = () => {
return slotsProps[key]?.(formModel)
}
} else {
slotObj[key] = () => {
return slotsProps[key]
}
}
}
}