// 首页、列表页{加入购物R
function ShopAddCart1625194556(aid, spec_value_id, num, rootDir) {
rootDir = rootDir ? rootDir : '';
$.ajax({
url : rootDir + '/index.php?m=user&c=Shop&a=shop_add_cart&_ajax=1',
data: {aid: aid, num: num, spec_value_id: spec_value_id},
type:'post',
dataType:'json',
success:function(res){
if (1 == res.code) {
window.location.href = res.url;
} else {
if (-1 == res.data.code) {
layer.msg(res.msg, {time: time});
} else {
// ȝ?
window.location.href = res.url;
}
}
}
});
} 첥