Authored by 刘传洋

M

... ... @@ -364,8 +364,8 @@
<div class="loading"><span></span>请稍后...</div>
<div class="">
<div id="Y_goodsSelectWin" class="goods-select-win">
<div class="goods-select-content"></div>
</div>
</div>
... ...
... ... @@ -526,7 +526,7 @@ function bindGiftWinAction($el) {
});
$el.on('click', '.addcart', function(){
$el.on('click', '.addcart', function() {
var $this = $(this);
var $curSize = $el.find('[data-role=sizes] .size-row:not(.none) .active');
... ... @@ -544,14 +544,14 @@ function bindGiftWinAction($el) {
if ($num.val() > allNum) {
new Alert('库存不足,目前还有' + allNum + '个库存').show();
} else {
/*if (Number($('#addToCart').val()) === 1) {
/* if (Number($('#addToCart').val()) === 1) {
addcart(dataJSON);
} else {
new Alert('该商品无法加入购物车').show();
}*/
// 替换促销商品
if(isSwap) {
if (isSwap) {
updateCartGiftItem(promotionId, newSkn, sku);
} else {
addcart({
... ... @@ -851,7 +851,7 @@ var Cart = {
}
// 加价购更换
if($item.data('isgift') || $item.data('ispricegift')) {
if ($item.data('isgift') || $item.data('ispricegift')) {
return updateCartGiftItem(promotionId, newSkn, newSku);
}
updateCartItem(newSku, oldSku);
... ...
... ... @@ -86,7 +86,7 @@ function cartDel(data, delUrl, cookieList) {
}
// 购物车表单 删除商品
/*$payWapper.on('click', '.cart-del-btn', function() {
/* $payWapper.on('click', '.cart-del-btn', function() {
// new Confirm({
// className: 'shopCart-del-dialog',
// content: '<h4><i class="iconfont">&#xe684;</i>删除商品</h4>' +
... ... @@ -348,7 +348,7 @@ function showPromotion(id) {
}*/
// 购物车列表 大小图切换
/*$('body').on('click', '.piclist li', function() {
/* $('body').on('click', '.piclist li', function() {
pacList = $(this).index();
$('.detail-bigpic:not(.none) .piclist li').removeClass('active');
$(this).addClass('active');
... ...