react-area-selector
v0.2.17
Published
react-area-selector-mobile
Downloads
9
Maintainers
Readme
基于React的移动端地区选择器组件
Installation
npm
npm install react-area-selector
Example
import AreaSelector from 'react-area-selector';
<AreaSelector
itemHeight={34}
rowCount={7}
show={true}
onChange={this.changeHandle}
onCancel={this.cancelHandle}
defaultText={['陕西省', '西安市', '雁塔区']}/>
Props
Props | Type | Default Value | Description
---------------- | --------------- | ------------------------------- | -----------show
| boolean
| false
| 组件的显示状态onChange
| function
| null
| 确认回调函数
onCancel
| function
| null
| 取消回调函数itemHeight
| number
| 34
| 每行显示高度rowCount
| number
| 7
| 行数defaultText
| array
| []
| 默认显示地区