$(document).ready(function(){
//增加
$('article > .content ').on('click','.button1',function(e){
var id = $(this).attr("sid");
var num = $(this).parents(".productBox").find(".amountBox").val();
if(id && num){
$.ajax({
url:'/activities/ajax/act2/ajax_set_cart.php',
type:"POST",
cache:false,
async:true,
data:{type:'add',Prod_Sell_ID:id,Amount:num},
error:function(d){
alert(d.responseText);
},
success:function(d){
$("#Act_Title_Box").html(d);
}
});
}else{
if(!id){
alert('請選擇尺寸與規格');
}else if(!num){
alert('請選擇數量');
}
return false;
}
});
//減少
$(".user-list6 .orderSlide").on('click','.delete',function(){
$.ajax({
url:'/activities/ajax/act2/ajax_set_cart.php',
type:"POST",
cache:false,
async:true,
data:{type:'del',ID:$(this).attr("del_id")},
error:function(d){
alert(d.responseText);
},
success:function(d){
$("#Act_Title_Box").html(d);
}
});
});
//加入購物車
$("#Act_Title_Box").on('click','.Add_Tmp_To_Cart',function(){
$.ajax({
url:'/activities/ajax/ajax_add_to_cart.php',
type:"POST",
cache:false,
async:true,
data:{Act_Type:$(this).attr("act_type")},
error:function(d){
alert(d.responseText);
},
success:function(d){
switch(d){
case "RET_SUCCESS":
alert("加入購物車成功");
window.location.reload();
break;
case "RET_NO_MEMBER_NO":
alert("欲購買菁點兌換商品請先登入會員並完成會員認證");
break;
case "RET_RBONUS_OUT":
alert("菁點不足");
break;
case "RET_ERROR":
alert("資料庫忙線中");
break;
case "RET_PROD_ERROR":
alert("商品已下架");
break;
case "RET_NO_PROD":
alert("請選擇商品");
break;
case "RET_STOCK_ERROR":
alert("商品庫存不足");
break;
case "RET_ADULT":
alert("商品為限制級商品,限18歲以上會員購買");
break;
case "RET_ADULT2":
alert("商品含限制級商品,限18歲以上會員購買,請先登入會員");
break;
case "RET_LIMIT_ERROR":
alert("數量超過限購量");
break;
default:
alert("資料庫忙線中");
break;
};
}
});
});
});