Authored by 梁志锋

购物车路由修改

@@ -8,8 +8,7 @@ var $ = require('jquery'), @@ -8,8 +8,7 @@ var $ = require('jquery'),
8 lazyLoad = require('yoho.lazyload'), 8 lazyLoad = require('yoho.lazyload'),
9 Hammer = require('yoho.hammer'); 9 Hammer = require('yoho.hammer');
10 10
11 -var chosePanel = require('./chose-panel'),  
12 - cartInfo = require('./cart-info').cartInfo; 11 +var chosePanel = require('./chose-panel');
13 12
14 var $cartContent = $('.cart-content'); 13 var $cartContent = $('.cart-content');
15 14
@@ -41,7 +40,7 @@ navHammer.on('tap', function(e) { @@ -41,7 +40,7 @@ navHammer.on('tap', function(e) {
41 40
42 41
43 $('.btn-balance').on('touchend', function() { 42 $('.btn-balance').on('touchend', function() {
44 - window.location.href = '/shoppingCart/orderEnsure?cartType=' + cartType; 43 + window.location.href = '/cart/index/orderEnsure?cartType=' + cartType;
45 }); 44 });
46 45
47 //$('.advance-buy').on('touchend', function() { 46 //$('.advance-buy').on('touchend', function() {
@@ -44,7 +44,7 @@ $('.cart-goods').on('touchstart', '.checkbox', function() { @@ -44,7 +44,7 @@ $('.cart-goods').on('touchstart', '.checkbox', function() {
44 44
45 $.ajax({ 45 $.ajax({
46 type: 'GET', 46 type: 'GET',
47 - url: '/shoppingCart/select', 47 + url: '/cart/index/select',
48 data: { 48 data: {
49 id: id 49 id: id
50 } 50 }
@@ -58,7 +58,7 @@ $('.cart-goods').on('touchstart', '.checkbox', function() { @@ -58,7 +58,7 @@ $('.cart-goods').on('touchstart', '.checkbox', function() {
58 } 58 }
59 $.ajax({ 59 $.ajax({
60 type: 'GET', 60 type: 'GET',
61 - url: '/shoppingCart/getCartData', 61 + url: '/cart/index/getCartData',
62 data: { 62 data: {
63 id: id 63 id: id
64 }, 64 },
@@ -120,7 +120,7 @@ $('.cart-goods').on('touchstart', '.checkbox', function() { @@ -120,7 +120,7 @@ $('.cart-goods').on('touchstart', '.checkbox', function() {
120 120
121 $.ajax({ 121 $.ajax({
122 method: 'post', 122 method: 'post',
123 - url: '/shoppingCart/del', 123 + url: '/cart/index/del',
124 data: { 124 data: {
125 id: id 125 id: id
126 } 126 }
@@ -167,11 +167,6 @@ $('.cart-goods').on('touchstart', '.checkbox', function() { @@ -167,11 +167,6 @@ $('.cart-goods').on('touchstart', '.checkbox', function() {
167 // }); 167 // });
168 //}) 168 //})
169 169
170 -  
171 -$('.btn-balance').on('touchend', function() {  
172 - window.location.href = '/shoppingCart/orderEnsure?cartType=' + 'ordinary';  
173 -});  
174 -  
175 $('.down').on('touchend', function() { 170 $('.down').on('touchend', function() {
176 chosePanel.show(); 171 chosePanel.show();
177 }); 172 });
@@ -180,7 +175,7 @@ $('.cut').on('touchend', function() { @@ -180,7 +175,7 @@ $('.cut').on('touchend', function() {
180 175
181 $.ajax({ 176 $.ajax({
182 type: 'GET', 177 type: 'GET',
183 - url: '/shoppingCart/modify', 178 + url: '/cart/index/modify',
184 data: { 179 data: {
185 old_product_sku: id, 180 old_product_sku: id,
186 new_product_sku: id, 181 new_product_sku: id,