Authored by 周少峰

cart router

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