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

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

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