1.0.5 • Published 6 years ago

jk-react-selector v1.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

Install

npm i jk-react-selector

Usage

import Selector from 'jk-react-selector';
//function:
  showConsole=()=>{
    
  }
//render:
    const allData = [
      { key: 1, name: '事假' },
      ...
      ]
    const title = "请选择xxx"
//return:
    <Selector
      title = {title} //选择器标题,title message
      titleShow = {true/false}  //是否显示标题,if title show
      data = {allData}   //选择器要显示的列表数据,data items you want to show
      onSelect = {this.showConsole.bind()}  //点击item的回调函数,callback function
    />
  )
}

Tips

1、you can not have the same name items in data

wrong examples:

    const allData = [
      { key: 1, name: '事假' },
      { key: 2, name: '年假' },
      { key: 3, name: '事假' },
      ...
      ]

2、onSelect() must be a function

you can code as  "this.xxx.bind()" or "()=>this.xxx()" but not "this.xxx()"

keyword

1.0.5

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago