Authored by uedxwg

'购物车商品详情'

... ... @@ -158,18 +158,17 @@ $('.btn-balance').on('touchend', function() {
});
$('.down').on('touchend', function() {
chosePanel.show();
chosePanel.show();
});
$('.cut').on('touchend', function() {
var $this = $(this),
id = $(this).closest('.shopping-cart-good').data('id');
console.log(id);
var id = $(this).closest('.shopping-cart-good').data('id');
$.ajax({
type: 'GET',
url: '/shoppingCart/modify',
data: {
old_product_sku: id ,
new_product_sku: id ,
old_product_sku: id,
new_product_sku: id,
buy_number: '0',
selected: 'Y'
},
... ...