|
@@ -38,9 +38,11 @@ class ScaleSearch extends Component {
|
|
|
getSearchList() {
|
|
|
const { searchResult } = this.props;
|
|
|
return searchResult && searchResult.map((item) => {
|
|
|
- return <li key={item.conceptId} onClick={this.showScale.bind(this,{conceptId:item.conceptId,name:item.name})}>
|
|
|
+ return <li key={item.conceptId}
|
|
|
+ title='点击查看详情'
|
|
|
+ onClick={this.showScale.bind(this,{conceptId:item.conceptId,name:item.name})}>
|
|
|
<span className={style['scale-name']}>{item.name}{this.getResult(item.conceptId)}</span>
|
|
|
- <button>查看</button>
|
|
|
+ {/*<button>查看</button>*/}
|
|
|
</li>;
|
|
|
});
|
|
|
}
|