You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.3 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

/********迷你购物车加减********/
function flowClickCartNum(a,b)
{
var b = parseInt(b);
var c = $("#goods_number_"+a);
var d = parseInt(c.val());
if(d < 1 || !$.isNumeric(d))
{
alert("请输入正确的產品数量");
e = 1;
}
if(b == -1)
{
if(d == 1)
{
alert("购买数量不能小于1件");
}
else
{
e = d + b;
}
}
else
{
e = d + b;
}
flow_change_goods_number(a,e);
}
function flow_change_goods_number(rec_id, goods_number)
{     
Ajax.call('flow.php?step=ajax_update_cart', 'rec_id=' + rec_id +'&goods_number=' + goods_number, flow_change_goods_number_response, 'POST','JSON');
}
function flow_change_goods_number_response(result)
{              
if (result.error == 0)
{
var rec_id = result.rec_id;
$('#goods_number_' +rec_id).val(result.goods_number);//更新数量
$('#total_items_' +rec_id).html(result.goods_subtotal);//更新小计
$('#totalSkuPrice').html(result.total_price); //更新合计
$('#selectedCount').html(result.total_goods_count);//更新购物车数量
//$('#totalRePrice').html("- "+result.total_saving) //更新节省
}
else if (result.message != '')
{
alert(result.message);                
}
}