import React from 'react' import { WeaCheckbox } from 'ecCom'; import { Row, Col, Icon } from 'antd'; export default class SelectItemsWrapper extends React.Component { constructor(props) { super(props); this.state = { showContent: true } } render() { return (
this.setState({ showContent: !this.state.showContent })}>
{this.props.title}} />
已选中0个字段 { this.state.showContent ? : }
{ this.state.showContent &&
{ this.props.items && this.props.items.map(item => ( )) }
}
) } }