Commit e3fa698b by zhaochengxiang

bug fix

parent 0417425c
......@@ -261,15 +261,17 @@ const RuleReviewItem = ({ value = {}, onChange }) => {
return (
<Row align='middle'>
<Radio.Group onChange={(e) => {
setRuleReviewSelected(e.target.value)
triggerChange({ requiresStandardApproval: e.target.value })
}}>
<Radio value={true}></Radio>
<Radio value={false}></Radio>
</Radio.Group>
<Col flex='none'>
<Radio.Group onChange={(e) => {
setRuleReviewSelected(e.target.value)
triggerChange({ requiresStandardApproval: e.target.value })
}}>
<Radio value={true}></Radio>
<Radio value={false}></Radio>
</Radio.Group>
</Col>
{
ruleReviewSelected && <Col span={16}>
ruleReviewSelected && <Col flex='1' style={{ overflow: 'hidden' }}>
<Select showSearch allowClear
placeholder='请选择规范评审人员(只能选择一人)'
searchValue={searchValue}
......
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