Search搜索框

author: 闫申申

定义

搜索框。

图片展示

Search 搜索框 - 图1

代码演示

  1. import Search from 'pile/dist/components/search'
  2. <Search
  3. onChangeHandle={function(text){console.log("text:" + text)}}
  4. onClearHandle={function(){console.log("clearHandle")}}
  5. onFocusHandle={function(){console.log("onFocusHandle")}}
  6. onBlurHandle={function(text){console.log("onBlurHandle")}}
  7. />

属性

参数 描述 数据类型 默认值
canceltext 关闭按钮标签文字 string 取消
placeholder input标签placeholder值 string 按姓名或者电话号码搜索
onChangeHandle 输入框文字变化时回调 function
onClearHandle 点击清除按钮时回调 function
onFocusHandle 获取焦点时回调 function
onBlurHandle 失去焦点时回调 function

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