提交 9b4d7e91 authored 作者: 钟是志's avatar 钟是志

30738 勤工助学(新)/工作情况考核,20219001028 获取 限制 关联有问题

上级 ea9420fa
......@@ -3163,6 +3163,8 @@ ${obj[dataColumn.base52]}
otherProps = {};
}
}
console.log(selectDis,'selectDis',disabled,'disabled');
const optDiy = Array.isArray(json?.options) ? json.options : Array.isArray(options) ? options : [];
cm = getFieldDecorator(dataColumn.base52, {
initialValue: !initValue && otherProps?.mode === 'multiple' ? undefined : initValue,
rules:
......@@ -3175,6 +3177,7 @@ ${obj[dataColumn.base52]}
},
],
})(
!optDiy.length ? <Select /> :
<Select
allowClear
showSearch
......@@ -3207,21 +3210,15 @@ ${obj[dataColumn.base52]}
}
{...otherProps}
>
{json.options && Array.isArray(json.options)
? json.options.map(r => {
return (
<Option key={r.value} value={r.value}>
{r.label}
</Option>
);
})
: options && options instanceof Array
? options.map(r => (
{
optDiy.map(r => {
return (
<Option key={r.value} value={r.value}>
{r.label}
</Option>
))
: ''}
);
})
}
</Select>,
);
if (
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论