提交 39f525e3 authored 作者: 钟是志's avatar 钟是志

下拉多选组件修改

上级 0d7fa57f
......@@ -2654,6 +2654,15 @@ export default class tableCom extends Component {
break;
case 'Select':
let otherProps = {};
if (json?.otherProps) {
otherProps = json?.otherProps;
try { // mode = multiple 就支持下拉多选了
otherProps = new Function(otherProps)();
} catch (e) {
otherProps = {};
}
}
cm = getFieldDecorator(dataColumn.base52, {
initialValue: initValue,
rules:
......@@ -2697,6 +2706,7 @@ export default class tableCom extends Component {
? option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0
: false
}
{...otherProps}
>
{options && options instanceof Array
? options.map(r => (
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论