...
|
...
|
@@ -44,7 +44,7 @@ $('.cart-goods').on('touchstart', '.checkbox', function() { |
|
|
|
|
|
$.ajax({
|
|
|
type: 'GET',
|
|
|
url: '/shoppingCart/select',
|
|
|
url: '/cart/index/select',
|
|
|
data: {
|
|
|
id: id
|
|
|
}
|
...
|
...
|
@@ -58,7 +58,7 @@ $('.cart-goods').on('touchstart', '.checkbox', function() { |
|
|
}
|
|
|
$.ajax({
|
|
|
type: 'GET',
|
|
|
url: '/shoppingCart/getCartData',
|
|
|
url: '/cart/index/getCartData',
|
|
|
data: {
|
|
|
id: id
|
|
|
},
|
...
|
...
|
@@ -120,7 +120,7 @@ $('.cart-goods').on('touchstart', '.checkbox', function() { |
|
|
|
|
|
$.ajax({
|
|
|
method: 'post',
|
|
|
url: '/shoppingCart/del',
|
|
|
url: '/cart/index/del',
|
|
|
data: {
|
|
|
id: id
|
|
|
}
|
...
|
...
|
@@ -167,11 +167,6 @@ $('.cart-goods').on('touchstart', '.checkbox', function() { |
|
|
// });
|
|
|
//})
|
|
|
|
|
|
|
|
|
$('.btn-balance').on('touchend', function() {
|
|
|
window.location.href = '/shoppingCart/orderEnsure?cartType=' + 'ordinary';
|
|
|
});
|
|
|
|
|
|
$('.down').on('touchend', function() {
|
|
|
chosePanel.show();
|
|
|
});
|
...
|
...
|
@@ -180,7 +175,7 @@ $('.cut').on('touchend', function() { |
|
|
|
|
|
$.ajax({
|
|
|
type: 'GET',
|
|
|
url: '/shoppingCart/modify',
|
|
|
url: '/cart/index/modify',
|
|
|
data: {
|
|
|
old_product_sku: id,
|
|
|
new_product_sku: id,
|
...
|
...
|
|