mycurrency.page.js 457 Bytes
/**
 * 新有货币界面
 */
require('scss/home/currency-index.page.scss');

let $ = require('yoho-jquery'),
    lazyLoad = require('yoho-jquery-lazyload');

require('js/common');

function getGender() {
    return window.cookie('_Channel') || 'boys';
}

require('js/channel/maybe-like')({gender: getGender()});

setTimeout(function() {

    lazyLoad($('img.lazy'));

    if ($('#goods-list').length === 0) {
        $('.maybe-like').hide();
    }
}, 30);