导语
对于新增编辑的页面 最好使用组件化的思想进行页面的设计实现 没必要用两个页面实现
编辑
核心代码
<Row gutter={24}> <Col span={24}> <Form.Item label="你的名字:"> {getFieldDecorator('mainBusiness', { initialValue: type === 'update' ? lecturerOrganizationEntity.mainBusiness : '', rules: [{ required: true, message: '请输入你的名字' }], })( <Input.TextArea autoSize={{ minRows: 2, maxRows: 2 }} disabled={disabled} /> )} </Form.Item> </Col> </Row>
总结
不管是什么框架 根据编辑状态加个type判断实现数据的一个操作功能 没必要进行多余的一个业务数据操作