Blame view

public/js/product/shop/shop-base.js 25.7 KB
陈峰 authored
1 2 3 4 5 6 7

/**
 * 商品列表页
 * @author: xuqi<qi.xu@yoho.cn>
 * @date: 2015/10/20
 */
陈峰 authored
8
require('product/shop/shop.page.css');
陈峰 authored
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
var $ = require('yoho-jquery'),
    Hammer = require('yoho-hammer'),
    ellipsis = require('yoho-mlellipsis'),
    lazyLoad = require('yoho-jquery-lazyload');


// 品牌页参数
var $brandHeader = $('#brand-header'),
    $introBox = $('#intro-box');

var filter = require('../../plugin/filter');

var writeSearch = require('../search/write-search');

var tip = require('../../plugin/tip');
var loading = require('../../plugin/loading');

var $goodsContainer = $('#goods-container'),
陈峰 authored
27
    $defaultgc = $goodsContainer.children('.default-goods'),
郝肖肖 authored
28
    $sgc = $goodsContainer.children('.sale-goods'),
陈峰 authored
29 30
    $ngc = $goodsContainer.children('.new-goods'),
    $pgc = $goodsContainer.children('.price-goods'),
陈峰 authored
31 32
    $dgc = $goodsContainer.children('.discount-goods'),
    $newList = $('.new-list');
陈峰 authored
33 34 35 36 37 38 39 40

var winH = $(window).height();

var $input = $('#search-input input'),
    $clear = $('#search-input .clear-input'),
    $buriedpoint = $('.buriedpoint'),
    $search = $('#search');
zhangxiaoru authored
41 42
var C_ID, filext = {}, total, argument;
陈峰 authored
43 44 45 46 47 48 49 50 51 52
var shopId, sort, brand, outlets, app_type, age_level, msort, misort, coin, app_version, first_load = true;

// 默认筛选条件
var defaultOpt = require('../../common/query-param');

var $listNav = $('#list-nav'),

    // 导航数据信息
    navInfo = {
        newest: {
郝肖肖 authored
53
            order: 0,
陈峰 authored
54
            reload: true,
陈峰 authored
55 56 57 58 59 60 61
            page: 1,
            end: false
        },
        default: {
            order: 0,
            reload: true,
            page: 1,
陈峰 authored
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
            end: false
        },
        price: {
            order: 1,
            reload: true,
            page: 0,
            end: false
        },
        discount: {
            order: 1,
            reload: true,
            page: 0,
            end: false
        }
    },
    $pre = $listNav.find('.active'), // 纪录进入筛选前的active项,初始为选中项
    searching,
    btnIntroHammer,
    introHammer,
    brandColHammer;

require('../../common');

ellipsis.init();
zhangxiaoru authored
87 88
C_ID = window._ChannelVary[window.cookie('_Channel')];
陈峰 authored
89 90 91 92
// pageCache 获取是否收藏
(function() {
    if ($('.domain').val()) {
        $.ajax({
郝肖肖 authored
93
            url: '/product/index/brandFav',
陈峰 authored
94
            data: {
陈峰 authored
95
                brandId: defaultOpt.brand
陈峰 authored
96 97 98 99 100 101
            },
            dataType: 'json',
            success: function(data) {
                if (data.collected) {
                    $('.brand-header .btn-col').addClass('coled');
                }
102
                $('.con').html(data.intro);
陈峰 authored
103 104 105 106 107 108 109
            },
            error: function() {
                tip.show('网络断开连接了~');
            }
        });
    } else if ($('.shopId').val().length > 0) {
        $.ajax({
郝肖肖 authored
110
            url: '/product/index/baseShopFav',
陈峰 authored
111 112 113 114 115
            data: {
                shopId: $('.shopId').val()
            },
            dataType: 'json',
            success: function(data) {
陈峰 authored
116
                if (data.is_favorite === 'Y') {
陈峰 authored
117 118
                    $('.brand-header .btn-col').addClass('coled');
                }
119
                $('.con').html(data.shop_intro);
陈峰 authored
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
            },
            error: function() {
                tip.show('网络断开连接了~');
            }
        });
    }
}());

// 搜索输入联动
function inputAction() {
    var $searchAssociate = $('.search-associate');
    var $icon = $('.search-icon');
    var $searchItems = $('.search-items');

    $input.on('input', function() {
        if ($input.val() === '') {
            $icon.css('color', '#b2b2b2');
            $clear.addClass('hide');
            $searchAssociate.html('');
            $searchItems.show();
            $searchAssociate.hide();
        } else {
            $icon.css('color', '#666');
            $clear.removeClass('hide');
            $searchAssociate.show();
        }

        // 联动搜索
        $.ajax({
            url: '/product/search/fuzzyDatas',
            data: {
                keyword: $input.val()
            },
            dataType: 'json',
            success: function(data) {
                var ajaxHtml = '';
                var i;

                if (data.length > 0) {
                    for (i = 0; i < data.length; i++) {
                        ajaxHtml += '<li><span class="keyword">' + data[i].keyword + '</span><span class="count">' +
                            data[i].count + ' items<i class="iconfont">&#xe614;</i></span></li>';
                    }

                    $searchAssociate.html(ajaxHtml);
                    $searchItems.hide();
                } else {
                    $searchAssociate.html('');
                }

                $searchAssociate.find('li').on('touchend', function() {
                    $buriedpoint.val($(this).find('.keyword').html());
                    $search.closest('form').submit();
                });
            },
            error: function() {
                tip.show('网络断开连接了~');
            }
        });
    });
}

inputAction();

$clear.on('touchend', function() {
    $input.val('').trigger('input');
});

/**
 * 手动触发搜索
 */
$search.on('touchend', function() {
    $(this).closest('form').submit();
    return false;
});

/**
 * 获取url参数
 */
function getQueryString(name) {
    var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i');
    var r = window.location.search.substr(1).match(reg);

    if (r !== null) {
        return window.unescape(r[2]);
    }
    return null;
}

shopId = getQueryString('shop_id');
sort = getQueryString('sort');
outlets = getQueryString('outlets');
age_level = getQueryString('age_level');
app_type = getQueryString('app_type');
msort = getQueryString('msort');
misort = getQueryString('misort');
coin = getQueryString('coin');
app_version = getQueryString('app_version') || getQueryString('appVersion');

/**
 * 筛选注册的回调,筛选子项点击后逻辑
 * 需要执行search的场景:1.点选筛选项;2.relaod为true时切换导航;3.下拉加载
 * @param opt {type, id}
 */
function search(opt) {
    var setting = {},
        ext,
        att,
        nav,
        navType,
        page,
        $this,
        $title,
        params;

    if (searching) {
        return;
    }

    if (opt) {
        // 筛选项变更则重置reload为true
        for (att in navInfo) {
            if (navInfo.hasOwnProperty(att)) {
                navInfo[att].reload = true;
            }
        }

        // 处理active状态
        $listNav.children('.active').removeClass('active');
        $pre.addClass('active');
        switch (opt.type) {
            case 'shop_id':
                ext = {
                    shop_id: opt.id
                };
                break;
            case 'gender':
                ext = {
                    gender: opt.id
                };
                break;
            case 'brand':
                ext = {
                    brand: opt.id
                };
                break;
            case 'sort':
                ext = {
                    sort: opt.id
                };
                break;
            case 'color':
                ext = {
                    color: opt.id
                };
                break;
            case 'ageLevel':
                ext = {
                    age_level: opt.id
                };
                break;
            case 'size':
                ext = {
                    size: opt.id
                };
                break;
            case 'price':
                ext = {
                    price: opt.id
                };
                break;
            case 'discount':
                ext = {
                    discount: opt.id
                };
                break;
            case 'outlets':
                ext = {
                    outlets: opt.id
                };
                break;
            default:
                break;
        }
zhangxiaoru authored
305
        $.extend(filext, ext);
陈峰 authored
306 307 308 309 310 311 312 313 314 315
        $.extend(defaultOpt, ext); // 扩展筛选项
    }

    // 导航类别
    if ($pre.hasClass('new')) {
        navType = 'newest';
    } else if ($pre.hasClass('price')) {
        navType = 'price';
    } else if ($pre.hasClass('discount')) {
        navType = 'discount';
陈峰 authored
316 317
    } else if ($pre.hasClass('default')) {
        navType = 'default';
陈峰 authored
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
    }
    nav = navInfo[navType];

    page = nav.page + 1;
    if (nav.reload) {
        page = 1;
    } else if (nav.end) {

        // 不需要重新加载并且数据请求结束
        return;
    }

    params = {
        type: navType,
        order: nav.order,
        page: page
    };

    if (shopId) {
        params.shop_id = shopId;
    }

    if (age_level) {
        params.age_level = age_level;
    }

    if (sort) {
        params.sort = sort;
    }

    if (brand) {
        params.brand = brand;
    }

    if (outlets) {
        params.outlets = outlets;
    }

    if (app_type) {
        params.app_type = app_type;
    }

    if (msort) {
        params.msort = msort;
    }

    if (misort) {
        params.misort = misort;
    }

    if (coin) {
        params.coin = coin;
    }

    if (app_version) {
        params.app_version = app_version;
    }

    $.extend(setting, defaultOpt, params);
    searching = true;
    if (setting.page >= 1) {
        loading.showLoadingMask();
    }
姜枫 authored
381
zhangxiaoru authored
382
    argument = setting;
陈峰 authored
383 384 385 386 387

    $.ajax({
        type: 'GET',
        url: location.protocol + '//m.yohobuy.com/product/search/search',
        data: setting,
388 389 390
        xhrFields: {
            withCredentials: true
        },
陈峰 authored
391 392 393
        success: function(data) {
            var noResult = '<p class="no-result">未找到相关搜索结果</p>',
                num,
zhangxiaoru authored
394 395 396
                $container,
                goodIds = [],
                yasparm;
陈峰 authored
397 398 399 400 401 402 403 404 405 406 407

            switch (navType) {
                case 'newest':
                    $container = $ngc;
                    break;
                case 'price':
                    $container = $pgc;
                    break;
                case 'discount':
                    $container = $dgc;
                    break;
陈峰 authored
408 409 410
                case 'default':
                    $container = $defaultgc;
                    break;
陈峰 authored
411 412 413 414
                default:
                    break;
            }
zhangxiaoru authored
415
            yasparm = {
416
                C_ID: C_ID,
zhangxiaoru authored
417 418 419 420 421 422 423
                BRAND_ID: setting.shop_id,
                PAGE_NUM: setting.page,
                FILTER_VALUE: opt ? JSON.stringify(filext).replace(/\{|\}|\"/g, '') : '',
                SORT_TYPE: setting.type
            };

郝肖肖 authored
424
            if (data === '' || (data.list && data.list.length <= 0)) {
陈峰 authored
425 426 427 428
                nav.end = true;

                if (nav.reload) {
                    $container.html(noResult);
zhangxiaoru authored
429 430 431 432 433 434 435 436 437 438

                    yasparm = Object.assign(yasparm, {
                        PRD_LIST: '',
                        RES_QTY: 0
                    });

                    setTimeout(function() {
                        if (window._yas && window._yas.sendCustomInfo) {

                            window._yas.sendCustomInfo({
zhangxiaoru authored
439
                                op: 'YB_BRAND_GOODS_LIST_L',
zhangxiaoru authored
440 441 442 443
                                param: JSON.stringify(yasparm)
                            }, true);
                        }
                    }, 200);
陈峰 authored
444 445
                }
            } else {
446
zhangxiaoru authored
447
陈峰 authored
448
                if (nav.reload) {
zhangxiaoru authored
449
陈峰 authored
450
                    var goodList = [];
郭成尧 authored
451
郝肖肖 authored
452
                    $(data).each(function(i, goodInfo) {
陈峰 authored
453 454
                        if ($(goodInfo).hasClass('good-info')) {
                            goodList.push(goodInfo);
zhangxiaoru authored
455 456 457
                            goodIds.push($(goodInfo).data('good-id'));
                        } else if ($(goodInfo).hasClass('total')) {
                            total = $(goodInfo).data('id');
陈峰 authored
458 459
                        }
                    });
姜枫 authored
460
zhangxiaoru authored
461 462 463
                    yasparm = Object.assign(yasparm, {
                        PRD_LIST: JSON.stringify(goodIds).replace(/\[|\]/g, ''),
                        RES_QTY: total
陈峰 authored
464
                    });
姜枫 authored
465
zhangxiaoru authored
466 467 468
                    setTimeout(function() {
                        if (window._yas && window._yas.sendCustomInfo) {
                            window._yas.sendCustomInfo({
zhangxiaoru authored
469
                                op: 'YB_BRAND_GOODS_LIST_L',
zhangxiaoru authored
470 471 472 473 474
                                param: JSON.stringify(yasparm)
                            }, true);
                        }
                    }, 200);
陈峰 authored
475 476
                    if (first_load) {
                        first_load = false;
姜枫 authored
477 478

                        // 移除头四个
陈峰 authored
479
                        goodList.splice(0, 4);
陈峰 authored
480 481 482
                        $container.append(goodList);
                    } else {
                        $container.html(goodList);
陈峰 authored
483 484 485 486 487 488
                    }
                    lazyLoad($container.find('.lazy'));
                } else {
                    num = $container.find('.good-info').length;
                    $container.append(data);
zhangxiaoru authored
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
                    if ($container.find('.total')) {
                        $container.find('.total').remove();
                    }

                    $container.find('.good-info:gt(' + (num - 1) + ')').each(function() {
                        var goodid = $(this).data('good-id');

                        if (goodid) {
                            goodIds.push(goodid);
                        }
                    });

                    yasparm = Object.assign(yasparm, {
                        PRD_LIST: total,
                        RES_QTY: JSON.stringify(goodIds).replace(/\[|\]/g, '')
                    });

                    setTimeout(function() {
                        if (window._yas && window._yas.sendCustomInfo) {
                            window._yas.sendCustomInfo({
zhangxiaoru authored
509
                                op: 'YB_BRAND_GOODS_LIST_L',
zhangxiaoru authored
510 511 512 513 514
                                param: JSON.stringify(yasparm)
                            }, true);
                        }
                    }, 200);
陈峰 authored
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
                    // lazy good-infos who append in
                    lazyLoad($container.find('.good-info:gt(' + (num - 1) + ') .lazy'));
                }

            }
            nav.reload = false;
            nav.page = page;

            searching = false;
            loading.hideLoadingMask();

            window.rePosFooter();

            $('.good-detail-text .name').each(function() {
                $this = $(this);
                $title = $this.find('a');

                $title[0].mlellipsis(2);
            });

            // 用于统计点击了商品列表的第几个商品,序号从1开始计算。
            if (window._yas) {
                switch (navType) {
                    case 'newest':
                        window._yas(1 * new Date(), '1.0.16', 'yohobuy_m', window._ozuid,
                            '', $('.new-goods .good-info .good-detail-img .good-thumb'));
                        break;
                    case 'price':
                        window._yas(1 * new Date(), '1.0.16', 'yohobuy_m', window._ozuid,
                            '', $('.price-goods .good-info .good-detail-img .good-thumb'));
                        break;
                    case 'discount':
                        window._yas(1 * new Date(), '1.0.16', 'yohobuy_m', window._ozuid,
                            '', $('.discount-goods .good-info .good-detail-img .good-thumb'));
                        break;
陈峰 authored
550 551 552 553
                    case 'default':
                        window._yas(1 * new Date(), '1.0.16', 'yohobuy_m', window._ozuid,
                            '', $('.default-goods .good-info .good-detail-img .good-thumb'));
                        break;
陈峰 authored
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
                    default:
                        break;
                }
            }
        }
    });

}

require('../../common/suspend-cart'); // 悬浮购物车
/* tar add 160914 */
if ($brandHeader.data('isbaseshop') === true) {
    Object.assign(defaultOpt, {shop_id: $brandHeader.data('id')});
}


$.ajax({
    type: 'GET',
    url: location.protocol + '//m.yohobuy.com/product/search/filter',
    data: defaultOpt,
    success: function(data) {
        $goodsContainer.append(data);

        // 初始化filter&注册filter回调
        filter.initFilter({
            fCbFn: search,
            hCbFn: function() {

                // 切换active状态到$pre上
                $pre.addClass('active');
                $pre.siblings('.filter').removeClass('active');
            }
        });
    }
});

lazyLoad($('.lazy'));

writeSearch.bindWirteLocal($('#search-form'));

// 导航栏点击逻辑说明:
// 1.点击非active项时切换active状态
// 2.价格和折扣active状态时继续点击切换排序
// 3.筛选无active时点击展开筛选面板
// 4.筛选有active时点击隐藏筛选面板并恢复点击筛选前active项的active状态
// 5.当前active为筛选并且点击其他项时,隐藏筛选面板

$listNav.bind('contextmenu', function() {
    return false;
});
陈峰 authored
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
function newListHide() {
    var $firstLi = $listNav.find('li.first-li-more');

    if ($newList.hasClass('hide')) {
        $firstLi.find('span.up').addClass('hide');
        $firstLi.find('span.down').removeClass('hide');
    } else {
        $firstLi.find('span.down').addClass('hide');
        $firstLi.find('span.up').removeClass('hide');
    }
}

$newList.on('touchstart', 'li', function(e) {
    var navType, bpIdData = $(this).attr('data-bp-id') || '',
        $firstLiDom = $listNav.find('li.first-li-more'),
        cls = '';

    e.preventDefault();
    if ($(this).hasClass('new')) {
        navType = 'newest';
        cls = 'new';
    } else if ($(this).hasClass('default')) {
        navType = 'default';
        cls = 'default';
    } else if ($(this).hasClass('sale')) {
        navType = 'sale';
        cls = 'sale';
    }

    $newList.addClass('hide');
    $firstLiDom.find('.nav-txt').text($(this).text());
    $firstLiDom.attr('data-bp-id', bpIdData).addClass('active').siblings().removeClass('active');
    $listNav.find('.first-li-more').removeClass('new default sale').addClass(cls);

    $(document).trigger('shouldSendBpData', [bpIdData]);
    newListHide();

    // 切换container显示
    $goodsContainer.children('.container:not(.hide)').addClass('hide');

    switch (navType) {
        case 'newest':
            $ngc.removeClass('hide');
            break;

        case 'price':
            $pgc.removeClass('hide');
            break;

        case 'discount':
            $dgc.removeClass('hide');
            break;

        case 'default':
            $defaultgc.removeClass('hide');
            break;

        case 'sale':
            $sgc.removeClass('hide');
            break;
        default:
            break;
    }
    $pre = $('.first-li-more');
    var nav = navInfo[navType];
姜枫 authored
669
陈峰 authored
670 671 672
    if (nav.reload) {
        search();
    }
姜枫 authored
673
陈峰 authored
674
});
陈峰 authored
675
陈峰 authored
676 677 678 679 680 681 682
$(document).on('touchstart', function(e) {
    if (!$newList.hasClass('hide') &&
        $(e.target).closest('.new-list, li.first-li-more').length <= 0) {
        $newList.addClass('hide');
        newListHide();
    }
});
陈峰 authored
683 684 685 686 687 688 689
$listNav.on('touchend touchcancel', function(e) {
    var $this = $(e.target).closest('li'),
        nav,
        navType,
        $active;
    var bpIdData = $(this).find('.buriedpoint').attr('data-bp-id') || '';
陈峰 authored
690 691 692 693 694 695 696 697 698 699 700 701 702
    if ($this.hasClass('first-li-more')) {
        filter.hideFilter();
        $newList.toggleClass('hide');
        if ($this.hasClass('default')) {
            $newList.find('li.default').addClass('active').siblings().removeClass('active');
        } else if ($this.hasClass('new')) {
            $newList.find('li.new').addClass('active').siblings().removeClass('active');
        } else if ($this.hasClass('sale')) {
            $newList.find('li.sale').addClass('active').siblings().removeClass('active');
        }
        newListHide();
        return true;
    }
姜枫 authored
703
陈峰 authored
704 705 706
    // 最新li 列表
    $newList.addClass('hide');
陈峰 authored
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
    if ($this.hasClass('filter')) {

        // 筛选面板切换状态
        if ($this.hasClass('active')) {
            filter.hideFilter();

            // 点击筛选钱的active项回复active
            $pre.addClass('active');
            $this.removeClass('active');
        } else {
            $pre = $this.siblings('.active');

            $pre.removeClass('active');
            $this.addClass('active');

            filter.showFilter();
        }
    } else {

        if ($this.hasClass('new')) {
            navType = 'newest';
        } else if ($this.hasClass('price')) {
            navType = 'price';
        } else if ($this.hasClass('discount')) {
            navType = 'discount';
陈峰 authored
732 733
        } else if ($pre.hasClass('default')) {
            navType = 'default';
姜枫 authored
734
        }
陈峰 authored
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778

        nav = navInfo[navType];

        if ($this.hasClass('active')) {

            // 最新无排序切换
            if ($this.hasClass('new')) {
                return;
            }

            if ($this.hasClass('price') || $this.hasClass('discount')) {

                // 价格/折扣切换排序状态
                $this.find('.icon > .iconfont').toggleClass('cur');
                $pre = $this; // 更新pre为当前项
                nav.reload = true; // 重置reload,HTML会被替换为逆序的HTML
                nav.order = nav.order === 0 ? 1 : 0; // 切换排序
            }
        } else {
            $active = $this.siblings('.active');

            $pre = $this; // $pre为除筛选导航的其他导航项,若当前active的为筛选,则把$pre置为当前点击项

            if ($active.hasClass('filter')) {

                // 若之前active项为筛选,则隐藏筛选面板
                filter.hideFilter();
            } else {

                // 切换container显示
                $goodsContainer.children('.container:not(.hide)').addClass('hide');

                switch (navType) {
                    case 'newest':
                        $ngc.removeClass('hide');
                        break;

                    case 'price':
                        $pgc.removeClass('hide');
                        break;

                    case 'discount':
                        $dgc.removeClass('hide');
                        break;
陈峰 authored
779 780 781 782

                    case 'default':
                        $defaultgc.removeClass('hide');
                        break;
陈峰 authored
783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895
                    default:
                        break;
                }
            }

            $active.removeClass('active');
            $this.addClass('active');
        }
        if (nav.reload) {
            $(document).trigger('shouldSendBpData', [bpIdData]);
            search();
        }
    }
});

function scrollHandler() {

    // 当scroll到1/4$goodsContainer高度后继续请求下一页数据
    if ($(window).scrollTop() + winH >
        $(document).height() - 0.25 * $goodsContainer.height()) {
        search();
    }
}

// srcoll to load more
$(window).scroll(function() {
    window.requestAnimationFrame(scrollHandler);
});

if ($brandHeader.length > 0) {

    // 品牌介绍
    btnIntroHammer = new Hammer($brandHeader.children('.btn-intro')[0]);
    btnIntroHammer.on('tap', function() {
        $introBox.removeClass('hide');

        // 防止混合scroll发生
        $('body').addClass('overflow-hidden');
    });

    // 关闭品牌介绍
    introHammer = new Hammer(document.getElementById('intro-box'));
    introHammer.on('tap', function(e) {
        var $this = $(e.target);

        e.srcEvent.preventDefault();

        // 关闭品牌介绍box
        if ($this.closest('#brand-intro').length === 0 || $this.hasClass('close-intro')) {
            $introBox.addClass('hide');
            $('body').removeClass('overflow-hidden');
        }
    });

    // 品牌收藏
    brandColHammer = new Hammer($brandHeader.children('.btn-col')[0]);
    brandColHammer.on('tap', function(e) {
        var $this = $(e.target).closest('.btn-col');

        var id = $brandHeader.data('id'),
            opt;

        if ($this.hasClass('coled')) {
            opt = 'cancel';
        } else {
            opt = 'ok';
        }

        $.ajax({
            type: 'GET',
            url: location.protocol + '//m.yohobuy.com/product/opt/favoriteBrand',
            data: {
                id: id,
                opt: opt,
                type: $brandHeader.data('isbaseshop') ? 'shop' : 'brand'
            },
            xhrFields: {
                withCredentials: true
            },
            success: function(data) {
                if (data.code === 200) {
                    $this.toggleClass('coled');

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

// 初始请求最新第一页数据
search();

$listNav.on('touchstart', 'li', function() {
    $listNav.find('li').removeClass('bytouch');
    $(this).addClass('bytouch');
}).on('touchend touchcancel', 'li', function() {
    $listNav.find('li').removeClass('bytouch');
});

require('../../common/footer');
陈峰 authored
896
require('./coupon');
zhangxiaoru authored
897
郝肖肖 authored
898
// 点击事件埋点
zhangxiaoru authored
899 900 901 902 903 904 905 906 907 908 909 910 911 912
$('#goods-container').on('click', '.good-info', function() {
    var PRD_ID = $(this).data('good-id'),
        PRD_NUM = $(this).index() + 1,
        FILTER_VALUE = filext ? JSON.stringify(filext).replace(/\{|\}|\"/g, '') : '';

    if (window._yas && window._yas.sendCustomInfo) {
        window._yas.sendCustomInfo({
            op: 'YB_BRAND_GOODS_LIST_C',
            param: JSON.stringify({
                C_ID: C_ID,
                PRD_ID: PRD_ID,
                PRD_NUM: PRD_NUM,
                PAGE_NUM: Math.ceil(PRD_NUM / 60),
                FILTER_VALUE: FILTER_VALUE,
913
                SORT_TYPE: argument ? argument.type : ''
zhangxiaoru authored
914 915 916 917 918
            })
        }, true);
    }

    // return false;
919
});