help-index.page.js 1.44 KB
/**
 * [帮助中心首页]
 * @author: wsl(shuiling.wang@yoho.cn)
 * @date: 2016/12/01
 */
var helpSearch = require('./help-search');
var problemBox = require('./help-common');
var yas = require('../common/data-yas');
var Scroller = require('./scroller');

require('../common');

$(function() {
    helpSearch.init();
    problemBox();

    setTimeout(function() {
        new Scroller('notice', 30, 5);

        // 公告栏某一公告点击埋点
        $('.notice a').on('click', function() {
            yas.yasEvent('YB_HELP_NOTICE_C', {
                POS_ID: $(this).data('index'),
                POS_NM: $(this).find('.notice-txt').html()
            });
        });
    }, 5000);

    // 帮助中心右侧新手指南某一位置点击埋点
    $('.new-guide a').on('click', function() {
        yas.yasEvent('YB_HELP_GUIDE_C', {
            POS_ID: $(this).data('index'),
            POS_NM: $(this).find('p').html()
        });
    });

    // 帮助中心右侧自助服务某一位置点击埋点
    $('.self-service a').on('click', function() {
        yas.yasEvent('YB_HELP_SERVICE_C', {
            POS_ID: $(this).data('index'),
            POS_NM: $(this).find('p').html()
        });
    });

    // 帮助中心右侧常见问题某一位置点击埋点
    $('.problem a').on('click', function() {
        yas.yasEvent('YB_HELP_QUESTION_C', {
            POS_ID: $(this).index() + 1,
            POS_NM: $(this).data('ask')
        });
    });
});