import React from 'react' import { Row, Col, Modal, Button } from 'antd' import { WeaInput } from 'ecCom' import RequiredLabelTip from '../../../components/requiredLabelTip' export default class AddCategoryModal extends React.Component { constructor(props) { super(props) this.state = { name: this.props.title ? this.props.title : "" } } render() { return ( { this.props.onSave(this.state.name) }}>保存} width={600} visible={this.props.visible} onCancel={() => { this.props.onCancel() }} >
分类名称 { this.setState({name: value}) }}/>
) } }