...
|
...
|
@@ -112,7 +112,7 @@ Cart = { |
|
|
|
|
|
if (!$this.data('gift')) {
|
|
|
countJSON = {
|
|
|
productPrice: $item.find('.productPrice').text(),
|
|
|
productPrice: $item.find('.product-price').text(),
|
|
|
productTitle: $item.find('.pay-pro-info a').text(),
|
|
|
link: $item.find('.pay-pro-info a').attr('href'),
|
|
|
productNum: $item.data('productnum'),
|
...
|
...
|
@@ -122,7 +122,7 @@ Cart = { |
|
|
}
|
|
|
|
|
|
new RConfirm(content, function() {
|
|
|
capi.cartItemDel(selectArray, true, countJSON);
|
|
|
capi.cartItemDel(selectArray, true, [countJSON]);
|
|
|
});
|
|
|
|
|
|
/* new RConfirm({
|
...
|
...
|
@@ -366,6 +366,7 @@ $payWapper.on('click', 'li[data-role="pitem"] .cart-item-check', Cart.toggleSele |
|
|
$payWapper.on('click', '[data-role=cart-del-btn]', Cart.del); // 删除商品
|
|
|
$payWapper.on('click', '[data-role=cart-mov2fav-btn]', Cart.toFav); // 移入收藏夹
|
|
|
$payWapper.on('click', '.minus, .plus', Cart.modNum); // 修改购物车数量
|
|
|
$payWapper.on('click', '.cart-title .cart-item-check', Cart.toggleSelectAll); // 全选
|
|
|
$cartnewSum.on('click', '.cart-item-check', Cart.toggleSelectAll); // 全选
|
|
|
$cartnewSum.on('click', '.delete-all-sel', Cart.delAll); // 批量删除商品
|
|
|
$cartnewSum.on('click', '.remove-all-2fav', Cart.toFavAll); // 批量移入收藏夹商品
|
...
|
...
|
|