...
|
...
|
@@ -2028,8 +2028,8 @@ $('#search').on('touchend', function() { |
|
|
|
|
|
if (historys && historys.length > 0) {
|
|
|
historys = historys.split(ranToken);
|
|
|
for (i = 0; i < historys.length; i++) {
|
|
|
history = historys[i];
|
|
|
for (i = historys.length; i > 0; i--) {
|
|
|
history = historys[i - 1];
|
|
|
|
|
|
if (history === '') {
|
|
|
continue;
|
...
|
...
|
@@ -4777,7 +4777,9 @@ $.ajax({ |
|
|
}
|
|
|
});
|
|
|
|
|
|
|
|
|
if ($('.good-detail-page').length > 0) {
|
|
|
$('#yoho-footer').css('border-top', '1px solid #e0e0e0');
|
|
|
}
|
|
|
|
|
|
require("js/product/detail/like");
|
|
|
|
...
|
...
|
@@ -4989,15 +4991,19 @@ var recommendSwiper, |
|
|
|
|
|
if (preferenceUrl) {
|
|
|
$.get(preferenceUrl).then(function(html) {
|
|
|
$recommendForYou.html(html).show();
|
|
|
if ($('#swiper-recommend').length) {
|
|
|
recommendSwiper = new Swiper('#swiper-recommend', {
|
|
|
slidesPerView: 'auto',
|
|
|
grabCursor: true,
|
|
|
slideElement: 'a',
|
|
|
lazyLoading: true,
|
|
|
watchSlidesVisibility: true
|
|
|
});
|
|
|
if (html.length < 5) {
|
|
|
$recommendForYou.css('display', 'none');
|
|
|
} else {
|
|
|
$recommendForYou.html(html).show();
|
|
|
if ($('#swiper-recommend').length) {
|
|
|
recommendSwiper = new Swiper('#swiper-recommend', {
|
|
|
slidesPerView: 'auto',
|
|
|
grabCursor: true,
|
|
|
slideElement: 'a',
|
|
|
lazyLoading: true,
|
|
|
watchSlidesVisibility: true
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
|
|
|
window.rePosFooter();
|
...
|
...
|
|