|
@@ -381,7 +381,7 @@ bindEvent.add(function() { |
|
@@ -381,7 +381,7 @@ bindEvent.add(function() { |
381
|
|
381
|
|
382
|
// 是否能:量贩购买,量贩小于库存才能购买
|
382
|
// 是否能:量贩购买,量贩小于库存才能购买
|
383
|
function canBundleBuy() {
|
383
|
function canBundleBuy() {
|
384
|
- return goodsBaseNum < maxStock;
|
384
|
+ return goodsBaseNum <= maxStock;
|
385
|
}
|
385
|
}
|
386
|
|
386
|
|
387
|
// 重置Num显示为最小购买数
|
387
|
// 重置Num显示为最小购买数
|
|
@@ -462,14 +462,11 @@ bindEvent.add(function() { |
|
@@ -462,14 +462,11 @@ bindEvent.add(function() { |
462
|
|
462
|
|
463
|
// 尺码选中的状态
|
463
|
// 尺码选中的状态
|
464
|
if (maxStock !== -1) {
|
464
|
if (maxStock !== -1) {
|
465
|
- console.log(maxStock);
|
|
|
466
|
if (canBundleBuy()) {
|
465
|
if (canBundleBuy()) {
|
467
|
- console.log(1);
|
|
|
468
|
$itemBuy.removeClass('hide');
|
466
|
$itemBuy.removeClass('hide');
|
469
|
$soldOut.addClass('hide');
|
467
|
$soldOut.addClass('hide');
|
470
|
- cartEvent.emit('gocart');
|
468
|
+ cartEvent.emit('selling');
|
471
|
} else {
|
469
|
} else {
|
472
|
- console.log(2);
|
|
|
473
|
$itemBuy.addClass('hide');
|
470
|
$itemBuy.addClass('hide');
|
474
|
$soldOut.removeClass('hide');
|
471
|
$soldOut.removeClass('hide');
|
475
|
cartEvent.emit('sellout');
|
472
|
cartEvent.emit('sellout');
|
|
@@ -489,12 +486,7 @@ bindEvent.add(function() { |
|
@@ -489,12 +486,7 @@ bindEvent.add(function() { |
489
|
// 包括默认的-1情况下
|
486
|
// 包括默认的-1情况下
|
490
|
$itemBuy.removeClass('hide');
|
487
|
$itemBuy.removeClass('hide');
|
491
|
$soldOut.addClass('hide');
|
488
|
$soldOut.addClass('hide');
|
492
|
-
|
|
|
493
|
- if (maxStock === -1) {
|
|
|
494
|
- cartEvent.emit('selling');
|
|
|
495
|
- } else {
|
|
|
496
|
- cartEvent.emit('gocart');
|
|
|
497
|
- }
|
489
|
+ cartEvent.emit('selling');
|
498
|
}
|
490
|
}
|
499
|
}
|
491
|
}
|
500
|
|
492
|
|
|
@@ -833,7 +825,9 @@ bindEvent.add(function() { |
|
@@ -833,7 +825,9 @@ bindEvent.add(function() { |
833
|
PRD_SKU: getSku()
|
825
|
PRD_SKU: getSku()
|
834
|
});
|
826
|
});
|
835
|
|
827
|
|
836
|
- addCart();
|
828
|
+ addCart().then(function() {
|
|
|
829
|
+ cartEvent.emit('gocart');
|
|
|
830
|
+ });
|
837
|
});
|
831
|
});
|
838
|
|
832
|
|
839
|
// 收藏
|
833
|
// 收藏
|
|
@@ -999,9 +993,10 @@ bindEvent.add(function() { |
|
@@ -999,9 +993,10 @@ bindEvent.add(function() { |
999
|
}
|
993
|
}
|
1000
|
|
994
|
|
1001
|
if (hasOnlyOneSize) {
|
995
|
if (hasOnlyOneSize) {
|
1002
|
- $maxColor = $('.colors .focus').eq(0);
|
|
|
1003
|
$sizes.eq($('.colors .focus').index()).find('li').click();
|
996
|
$sizes.eq($('.colors .focus').index()).find('li').click();
|
1004
|
}
|
997
|
}
|
|
|
998
|
+
|
|
|
999
|
+ $maxColor = $('.colors .focus').eq(0);
|
1005
|
}());
|
1000
|
}());
|
1006
|
|
1001
|
|
1007
|
yasAtHead.yasHead();
|
1002
|
yasAtHead.yasHead();
|
|
@@ -1187,8 +1182,6 @@ function loadComment() { |
|
@@ -1187,8 +1182,6 @@ function loadComment() { |
1187
|
|
1182
|
|
1188
|
});
|
1183
|
});
|
1189
|
|
1184
|
|
1190
|
-
|
|
|
1191
|
-
|
|
|
1192
|
// 评论类型的切换
|
1185
|
// 评论类型的切换
|
1193
|
$('.comments').on('click', '.comment-tabs h2[data-comment-type]', function() {
|
1186
|
$('.comments').on('click', '.comment-tabs h2[data-comment-type]', function() {
|
1194
|
|
1187
|
|
|
@@ -1873,10 +1866,7 @@ $('.shoppingCar-btn').on('click', function() { |
|
@@ -1873,10 +1866,7 @@ $('.shoppingCar-btn').on('click', function() { |
1873
|
}
|
1866
|
}
|
1874
|
|
1867
|
|
1875
|
if ($this.data('gocart') === 1) {
|
1868
|
if ($this.data('gocart') === 1) {
|
1876
|
- addCart().then(function() {
|
|
|
1877
|
- window.jumpUrl($('#go-to-cart-url').attr('href'));
|
|
|
1878
|
- });
|
|
|
1879
|
-
|
1869
|
+ window.jumpUrl($('#go-to-cart-url').attr('href'));
|
1880
|
return;
|
1870
|
return;
|
1881
|
}
|
1871
|
}
|
1882
|
|
1872
|
|