...
|
...
|
@@ -137,6 +137,18 @@ var YohoListPage = { |
|
|
YohoListPage.filterBrand($(this).data('value').toLowerCase());
|
|
|
});
|
|
|
|
|
|
$('.goods-area > .goods').click(function() {
|
|
|
var url = $(this).data('url');
|
|
|
|
|
|
location.href = url;
|
|
|
});
|
|
|
|
|
|
$('.goods-wrapper > .goods').click(function() {
|
|
|
var url = $(this).data('url');
|
|
|
|
|
|
location.href = url;
|
|
|
});
|
|
|
|
|
|
$('.goods-area > .goods').mouseenter(function(e) {
|
|
|
YohoListPage.showGoodsWrapper(e);
|
|
|
});
|
...
|
...
|
@@ -264,6 +276,7 @@ var YohoListPage = { |
|
|
showGoodsWrapper: function(e) {
|
|
|
var position = $(e.currentTarget).position();
|
|
|
var productId = $(e.currentTarget).data('id');
|
|
|
var url = $(e.currentTarget).data('url');
|
|
|
var imgsSize = $(e.currentTarget).find('.goods-list i').length;
|
|
|
var imgsCol;
|
|
|
var pos = {};
|
...
|
...
|
@@ -286,6 +299,7 @@ var YohoListPage = { |
|
|
|
|
|
$(this.goodsWrapper).css(pos);
|
|
|
$('.goods', this.goodsWrapper).html($(e.currentTarget).html());
|
|
|
$('.goods', this.goodsWrapper).data('url', url);
|
|
|
$('.goods-img-list', this.goodsWrapper).empty();
|
|
|
$(e.currentTarget).find('.goods-list i').each(function(index) {
|
|
|
if (index % 4 === 0) {
|
...
|
...
|
|