|
@@ -14,6 +14,7 @@ class MedicalInfo extends Component {
|
|
this.search = this.search.bind(this);
|
|
this.search = this.search.bind(this);
|
|
this.handleChange = this.handleChange.bind(this);
|
|
this.handleChange = this.handleChange.bind(this);
|
|
this.clear = this.clear.bind(this);
|
|
this.clear = this.clear.bind(this);
|
|
|
|
+ this.getSearchList = this.getSearchList.bind(this);
|
|
}
|
|
}
|
|
getSearchList() {
|
|
getSearchList() {
|
|
const { getAllConceptDetail,searchResult } = this.props;
|
|
const { getAllConceptDetail,searchResult } = this.props;
|
|
@@ -26,10 +27,8 @@ class MedicalInfo extends Component {
|
|
});
|
|
});
|
|
}
|
|
}
|
|
search(){
|
|
search(){
|
|
- console.log('val1')
|
|
|
|
const {handleChangeValue} = this.props;
|
|
const {handleChangeValue} = this.props;
|
|
const val = this.$inp.current.value;
|
|
const val = this.$inp.current.value;
|
|
- console.log('val',val)
|
|
|
|
handleChangeValue&&handleChangeValue(val);
|
|
handleChangeValue&&handleChangeValue(val);
|
|
}
|
|
}
|
|
handleChange(){
|
|
handleChange(){
|