Authored by OF1706

n

... ... @@ -269,13 +269,11 @@ function renderAndShowSelWin($edit, pinfo) {
var Cart = {
addToCart: function(params) {
<<<<<<< HEAD
$payWapper.find('.cart-item-check').each(function() {
var $item = $(this);
var $chk = $item.find('.cart-item-check');
if ($chk.hasClass('cart-item-checked')) {
=======
},
toggleSelectOne: function() { // 单选
... ... @@ -288,7 +286,6 @@ var Cart = {
goods_type: $pitem.data('goodstype'),
promotion_id: $pitem.data('promotionid') ? $pitem.data('promotionid') : 0
};
>>>>>>> 3a2b8fa435f608cc40704e327ea3ee303f3c3da4
return choiceOut(item);
},
... ...
... ... @@ -173,7 +173,11 @@ function showTogetherGoods(id) {
dialog.show();
}
//凑单 顶部 轮播
$('.side-img-dd').slider2({
isCircle: true,
shownum: 5
});
// 凑单弹框 详情切换
$('body').on('click', '.piclist li', function() {
pacList = $(this).index();
... ... @@ -262,25 +266,25 @@ $('body').on('click', '.cut, .add', function() {
// 凑单弹框 商品信息弹出框,加入收藏夹
$cartGoodsDetail.on('click', '.btn-favCount', function() {
// $.ajax({
// type: 'POST',
// dataType: 'json',
// url: '',
// data: {
// productId: productId,
// type: 'add'
// }
// }).then(function(d) {
// if (d.code === 200) {
// new Alert(d.message).show();
// } else if (d.code === 403) {
// if (d.data.url) {
// window.location = d.data.url;
// }
// } else {
// new Alert(d.message).show();
// }
// });
$.ajax({
type: 'POST',
dataType: 'json',
url: '',
data: {
productId: productId,
type: 'add'
}
}).then(function(d) {
if (d.code === 200) {
new Alert(d.message).show();
} else if (d.code === 403) {
if (d.data.url) {
window.location = d.data.url;
}
} else {
new Alert(d.message).show();
}
});
});
... ...