...
|
...
|
@@ -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();
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
|
|
|
|
...
|
...
|
|