Showing
3 changed files
with
8 additions
and
8 deletions
@@ -364,8 +364,8 @@ | @@ -364,8 +364,8 @@ | ||
364 | 364 | ||
365 | <div class="loading"><span></span>请稍后...</div> | 365 | <div class="loading"><span></span>请稍后...</div> |
366 | 366 | ||
367 | - <div class=""> | ||
368 | - | 367 | + <div id="Y_goodsSelectWin" class="goods-select-win"> |
368 | + <div class="goods-select-content"></div> | ||
369 | </div> | 369 | </div> |
370 | </div> | 370 | </div> |
371 | 371 |
@@ -526,7 +526,7 @@ function bindGiftWinAction($el) { | @@ -526,7 +526,7 @@ function bindGiftWinAction($el) { | ||
526 | 526 | ||
527 | }); | 527 | }); |
528 | 528 | ||
529 | - $el.on('click', '.addcart', function(){ | 529 | + $el.on('click', '.addcart', function() { |
530 | 530 | ||
531 | var $this = $(this); | 531 | var $this = $(this); |
532 | var $curSize = $el.find('[data-role=sizes] .size-row:not(.none) .active'); | 532 | var $curSize = $el.find('[data-role=sizes] .size-row:not(.none) .active'); |
@@ -544,14 +544,14 @@ function bindGiftWinAction($el) { | @@ -544,14 +544,14 @@ function bindGiftWinAction($el) { | ||
544 | if ($num.val() > allNum) { | 544 | if ($num.val() > allNum) { |
545 | new Alert('库存不足,目前还有' + allNum + '个库存').show(); | 545 | new Alert('库存不足,目前还有' + allNum + '个库存').show(); |
546 | } else { | 546 | } else { |
547 | - /*if (Number($('#addToCart').val()) === 1) { | 547 | + /* if (Number($('#addToCart').val()) === 1) { |
548 | addcart(dataJSON); | 548 | addcart(dataJSON); |
549 | } else { | 549 | } else { |
550 | new Alert('该商品无法加入购物车').show(); | 550 | new Alert('该商品无法加入购物车').show(); |
551 | }*/ | 551 | }*/ |
552 | 552 | ||
553 | // 替换促销商品 | 553 | // 替换促销商品 |
554 | - if(isSwap) { | 554 | + if (isSwap) { |
555 | updateCartGiftItem(promotionId, newSkn, sku); | 555 | updateCartGiftItem(promotionId, newSkn, sku); |
556 | } else { | 556 | } else { |
557 | addcart({ | 557 | addcart({ |
@@ -851,7 +851,7 @@ var Cart = { | @@ -851,7 +851,7 @@ var Cart = { | ||
851 | } | 851 | } |
852 | 852 | ||
853 | // 加价购更换 | 853 | // 加价购更换 |
854 | - if($item.data('isgift') || $item.data('ispricegift')) { | 854 | + if ($item.data('isgift') || $item.data('ispricegift')) { |
855 | return updateCartGiftItem(promotionId, newSkn, newSku); | 855 | return updateCartGiftItem(promotionId, newSkn, newSku); |
856 | } | 856 | } |
857 | updateCartItem(newSku, oldSku); | 857 | updateCartItem(newSku, oldSku); |
@@ -86,7 +86,7 @@ function cartDel(data, delUrl, cookieList) { | @@ -86,7 +86,7 @@ function cartDel(data, delUrl, cookieList) { | ||
86 | } | 86 | } |
87 | 87 | ||
88 | // 购物车表单 删除商品 | 88 | // 购物车表单 删除商品 |
89 | -/*$payWapper.on('click', '.cart-del-btn', function() { | 89 | +/* $payWapper.on('click', '.cart-del-btn', function() { |
90 | // new Confirm({ | 90 | // new Confirm({ |
91 | // className: 'shopCart-del-dialog', | 91 | // className: 'shopCart-del-dialog', |
92 | // content: '<h4><i class="iconfont"></i>删除商品</h4>' + | 92 | // content: '<h4><i class="iconfont"></i>删除商品</h4>' + |
@@ -348,7 +348,7 @@ function showPromotion(id) { | @@ -348,7 +348,7 @@ function showPromotion(id) { | ||
348 | }*/ | 348 | }*/ |
349 | 349 | ||
350 | // 购物车列表 大小图切换 | 350 | // 购物车列表 大小图切换 |
351 | -/*$('body').on('click', '.piclist li', function() { | 351 | +/* $('body').on('click', '.piclist li', function() { |
352 | pacList = $(this).index(); | 352 | pacList = $(this).index(); |
353 | $('.detail-bigpic:not(.none) .piclist li').removeClass('active'); | 353 | $('.detail-bigpic:not(.none) .piclist li').removeClass('active'); |
354 | $(this).addClass('active'); | 354 | $(this).addClass('active'); |
-
Please register or login to post a comment