Commit 41616260 by zhaochengxiang

要素可选

parent 183a9392
......@@ -363,7 +363,7 @@ const AssetAction = (props) => {
(typeof(element?.optional) === 'string') && (element?.optional??'').split(',').map((item, index) => <Select.Option key={index} value={item}>{item}</Select.Option>)
}
</Select>
} else if (element.selectMode === '多选') {
} else if (element?.selectMode === '多选') {
return <MultipleItem element={element} />
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment