| | |
| | | )} |
| | | </Form.Item> |
| | | </Col> : null} |
| | | <Col span={12}> |
| | | <Form.Item label={ |
| | | <Tooltip placement="topLeft" title="第一组不显示。"> |
| | | <Icon type="question-circle" /> |
| | | 上一步 |
| | | </Tooltip> |
| | | }> |
| | | {getFieldDecorator('prevEnable', { |
| | | initialValue: group.prevButton.enable |
| | | })( |
| | | <Radio.Group> |
| | | <Radio value="true">显示</Radio> |
| | | <Radio value="false">隐藏</Radio> |
| | | </Radio.Group> |
| | | )} |
| | | </Form.Item> |
| | | </Col> |
| | | <Col span={12}> |
| | | <Form.Item label="提交"> |
| | | {getFieldDecorator('subEnable', { |
| | | initialValue: group.subButton.enable |
| | | })( |
| | | <Radio.Group> |
| | | <Radio value="true">显示</Radio> |
| | | <Radio value="false">隐藏</Radio> |
| | | </Radio.Group> |
| | | )} |
| | | </Form.Item> |
| | | </Col> |
| | | <Col span={12}> |
| | | <Form.Item label={ |
| | | <Tooltip placement="topLeft" title="最后一组不显示。"> |
| | | <Icon type="question-circle" /> |
| | | 跳过 |
| | | </Tooltip> |
| | | }> |
| | | {getFieldDecorator('nextEnable', { |
| | | initialValue: group.nextButton.enable |
| | | })( |
| | | <Radio.Group> |
| | | <Radio value="true">显示</Radio> |
| | | <Radio value="false">隐藏</Radio> |
| | | </Radio.Group> |
| | | )} |
| | | </Form.Item> |
| | | </Col> |
| | | </Row> |
| | | </Form> |
| | | ) |