...
|
...
|
@@ -870,9 +870,6 @@ function searchSuggestHistory() { |
|
|
// $searchKey.val($('#defaultsearch').val());
|
|
|
// }
|
|
|
|
|
|
// 保存搜索的内容
|
|
|
// writeSearch.setHistoryValFun($searchKey.val());
|
|
|
// exeCookieMap();
|
|
|
|
|
|
let $queryKey = $('#query-key');
|
|
|
$.getJSON('//search.yohobuy.com/product/search/history?query=' + $queryKey.val(), function(jsonData) {
|
...
|
...
|
@@ -881,14 +878,19 @@ function searchSuggestHistory() { |
|
|
// if (jsonData.code === 200) {
|
|
|
// if (jsonData.data && jsonData.data.length) {
|
|
|
|
|
|
searchSuggestHistoryHtml = handlebars.compile($searchHistoryHbs.html() || '');
|
|
|
console.log(jsonData);
|
|
|
$searchHistory.html(searchSuggestHistoryHtml(jsonData)).show();
|
|
|
searchSuggestHistoryHtml = handlebars.compile($searchHistoryHbs.html() || '');
|
|
|
$searchHistory.html(searchSuggestHistoryHtml(jsonData)).show();
|
|
|
|
|
|
// } else {
|
|
|
// $searchHistory.hide();
|
|
|
// }
|
|
|
// }
|
|
|
|
|
|
$(".search-suggest-title .searchDel").click(function(){
|
|
|
console.log("****&&&&&&&&&&&");
|
|
|
$.cookie('_History',null,{path:'/'});
|
|
|
return false;
|
|
|
});
|
|
|
});
|
|
|
}
|
|
|
|
...
|
...
|
@@ -921,27 +923,24 @@ function searchSuggestRecommend(key) { |
|
|
};
|
|
|
|
|
|
$.getJSON('//search.yohobuy.com/product/search/recommend?callback=?', param, function(jsonData) {
|
|
|
console.log("*********************");
|
|
|
console.log(jsonData);
|
|
|
console.log("*********************");
|
|
|
// console.log("*********************");
|
|
|
// console.log(jsonData);
|
|
|
// console.log("*********************");
|
|
|
var searchSuggestRecommendHtml;
|
|
|
|
|
|
if (jsonData.code === 200) {
|
|
|
if (jsonData.data && jsonData.data.hotTerms.length) {
|
|
|
|
|
|
searchSuggestRecommendHtml = handlebars.compile($searchRecommendHbs.html() || '');
|
|
|
console.log(searchSuggestRecommendHtml(jsonData));
|
|
|
|
|
|
searchSuggestRecommendHtml = handlebars.compile($searchRecommendHbs.html() || '');
|
|
|
$searchRecommend.html(searchSuggestRecommendHtml(jsonData)).show();
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
$searchRecommend.hide();
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
}
|
|
|
|
...
|
...
|
|