提交 dea88ba3 编写于 作者: A afc163

Fix transfer searchPlaceholder

上级 a919e9e4
......@@ -222,6 +222,7 @@ Transfer.defaultProps = {
operations: [],
showSearch: false,
searchPlaceholder: '请输入搜索内容',
notFoundContent: '请输入搜索内容',
body: noop,
footer: noop,
};
......
......@@ -70,7 +70,7 @@ class TransferList extends Component {
render() {
const { prefixCls, dataSource, titleText, filter, checkedKeys,
checkStatus, body, footer, showSearch } = this.props;
checkStatus, body, footer, showSearch, searchPlaceholder } = this.props;
// Custom Layout
const footerDom = footer({ ...this.props });
......@@ -109,7 +109,11 @@ class TransferList extends Component {
{ bodyDom ||
<div className={ showSearch ? `${prefixCls}-body ${prefixCls}-body-with-search` : `${prefixCls}-body`}>
{ showSearch ? <div className={`${prefixCls}-body-search-wrapper`}>
<Search prefixCls={`${prefixCls}-search`} onChange={this.handleFilter.bind(this)} handleClear={this.handleClear.bind(this)} value={filter} />
<Search prefixCls={`${prefixCls}-search`}
onChange={this.handleFilter.bind(this)}
handleClear={this.handleClear.bind(this)}
placeholder={searchPlaceholder}
value={filter} />
</div> : null }
<Animate component="ul"
transitionName={this.state.mounted ? `${prefixCls}-highlight` : ''}
......
......@@ -31,7 +31,7 @@ class Search extends Component {
}
Search.defaultProps = {
placeholder: '请输入搜索内容',
placeholder: '',
onChange: noop,
handleClear: noop,
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册