/**
 * Created by bd2010141 on 2018/7/12.
 */
//加载会员所有收藏的产品ID数组，在页面中产品列表有改产品。则变为已收藏状态
$(document).ready(function(){
    if(!isempty(getCookie("bld_access_token"))){
        _DoAjaxAsyncTrue("GET", {}, "/webapi/v1/mem/memFavoritesProids",function(res){
            if(res.length>0){
                $(".p_phar_bd .i_favorites").each(function(){
                    var proid=$(this).attr("proid");
                    if (!isempty(proid)&&$.inArray(proid,res)>-1){
                        $(this).addClass("on");
                    }
                })
            }
        });
    }
});
