ColumnPicker选择器

author: 闫申申

定义

可控制的单列或多列选择器。

图片展示

ColumnPicker 选择器 - 图1

代码演示

  1. import Picker from 'pile/dist/components/picker'
  2. const {ColumnPicker} = Picker
  3. <ColumnPicker
  4. value={[2,4]}
  5. options={[[1,2,3],[4,5,6]]}
  6. open = {false}
  7. pickerAway = {this.clickAway}
  8. ref = "pickers"
  9. />

属性

参数 描述 数据类型 默认值
value 默认值 array
options 配置项 array
pickerAway 点击确认后回调,返回值(o),o:(array)各列所选中的内容,如:[2015,"12月"],数组的个数与选择器的列数相当 function

原文: https://didi.github.io/pile.js/docs/2017/08/develop-components-picker-columnpicker.html