Authored by chenl

修复了android的热门搜索不可点击的问题。review by 石祥。

... ... @@ -178,7 +178,11 @@ class BrandContainer extends Component {
this._onSearchTextChange(keyword);
}
else{
this._onPressBrandItem(androiddata);
//先判断是否有androiddata数据,若有则直接调用原生方法,若无则可能是热门搜索信息,设置搜索框文字内容
if(androiddata)
this._onPressBrandItem(androiddata);
else
this._onSearchTextChange(keyword);
}
}
... ...