作者 anyv
1 个管道 的构建 通过 耗费 0 秒

5

... ... @@ -42,7 +42,7 @@ class ShopcartController extends WeChatBaseController{
return 3;
}
}
}
... ...
... ... @@ -152,6 +152,21 @@
}
});
}
/**
*点击加入购物车
*/
function add_cart(id){
$.post("{:url('Shopcart/add_cart')}",{goods_id:id},function(data){
if(data == 2){
alert('已添加购物车');
}else if(data == 3){
alert('添加失败');
}else if(data == 1){
alert('添加成功');
}
});
}
</script>
</body>
... ...