import React from 'react' /** * 下拉单选框 */ class Select extends React.Component { constructor (props) { super(props) this.handleChange = this.handleChange.bind(this) } handleChange (event) { const { onChange } = this.props onChange(event.target.value) } render () { return (