like.js 1.91 KB
/**
 *  商品详情 --添加收藏
 * @author: Lynnic
 * @date: 2015/11/24
 */


var $ = require('yoho-jquery'),
    tip = require('../plugin/tip'),
    chosePanel = require('../cart/chose-panel');

var productId = $('#productId').val();

var skn = $('#productSkn').val(),
    productCode = $('#limitProductCode').val();

$('#likeBtn').on('touchstart', function() {
    var opt,
        favorite;

    var $this = $(this);

    if ($this.hasClass('liked')) {
        opt = 'cancel';
        favorite = 0;
    } else {
        opt = 'ok';
        favorite = 1;
    }

    $.ajax({
        type: 'POST',
        url: '/product/opt/favoriteProduct',
        data: {
            id: productId,
            opt: opt
        },
        success: function(data) {
            if (data.code === 200) {
                $this.toggleClass('liked');

                if ('cancel' === opt) {
                    tip.show('取消收藏成功');
                } else if ('ok' === opt) {
                    tip.show('收藏成功');
                }
            } else if (data.code === 400) {
                location.href = data.data;// 未登录跳转登录页
            } else {
                tip.show(data.message);
            }
        },
        error: function() {
            tip.show('网络断开连接了~');
        }
    });

    // 统计代码:用于统计用户加入或取消商品收藏的动作
    if (window._yas) {
        window._yas.sendCustomInfo({
            pd: productId,
            fa: favorite
        }, true);
    }

    return false;
});

$('#addtoCart').on('touchstart', function() {
    $('.cart-bar').hide();
    productCode && chosePanel.setLimitGoodModeWithSknId(productCode, skn);
    chosePanel.show();

    // 统计代码:用于统计用户加入购物车的动作
    if (window._yas) {
        window._yas.sendCustomInfo({
            pd: productId,
            by: 1
        }, true);
    }

    return false;
});