Authored by 周少峰

cart router

@@ -17,7 +17,7 @@ const easypay = require(`${cRoot}/easypay`); @@ -17,7 +17,7 @@ const easypay = require(`${cRoot}/easypay`);
17 const ensure = require(`${cRoot}/order-ensure`); 17 const ensure = require(`${cRoot}/order-ensure`);
18 18
19 router.get('/index/getProductInfo', cart.getProductInfo); 19 router.get('/index/getProductInfo', cart.getProductInfo);
20 -router.post('/cart/index/add', cart.cartAddIndex); // 加入购物车 商品详情页 20 +router.post('/cart/detailAdd', cart.cartAddIndex); // 加入购物车 商品详情页
21 21
22 router.get('/coupon/list', cart.getCoupons); // 优惠券列表 22 router.get('/coupon/list', cart.getCoupons); // 优惠券列表
23 23
@@ -125,7 +125,7 @@ function getSku() { @@ -125,7 +125,7 @@ function getSku() {
125 function addCart() { 125 function addCart() {
126 return $.ajax({ 126 return $.ajax({
127 type: 'POST', 127 type: 'POST',
128 - url: '/cart/cart/index/add', 128 + url: '/cart/cart/detailAdd',
129 data: { 129 data: {
130 productSku: getSku(), 130 productSku: getSku(),
131 buyNumber: getNum() 131 buyNumber: getNum()