Blame view

public/js/help/help-index.page.js 1.44 KB
王水玲 authored
1 2 3 4 5 6 7
/**
 * [帮助中心首页]
 * @author: wsl(shuiling.wang@yoho.cn)
 * @date: 2016/12/01
 */
var helpSearch = require('./help-search');
var problemBox = require('./help-common');
王水玲 authored
8
var yas = require('../common/data-yas');
王水玲 authored
9 10 11 12 13 14 15 16
var Scroller = require('./scroller');

require('../common');

$(function() {
    helpSearch.init();
    problemBox();
王水玲 authored
17 18 19 20 21
    setTimeout(function() {
        new Scroller('notice', 30, 5);

        // 公告栏某一公告点击埋点
        $('.notice a').on('click', function() {
22
            yas.yasEvent('YB_HELP_NOTICE_C', {
王水玲 authored
23 24
                POS_ID: $(this).data('index'),
                POS_NM: $(this).find('.notice-txt').html()
王水玲 authored
25
            });
王水玲 authored
26 27 28 29 30
        });
    }, 5000);

    // 帮助中心右侧新手指南某一位置点击埋点
    $('.new-guide a').on('click', function() {
31
        yas.yasEvent('YB_HELP_GUIDE_C', {
王水玲 authored
32 33 34
            POS_ID: $(this).data('index'),
            POS_NM: $(this).find('p').html()
        });
王水玲 authored
35 36
    });
王水玲 authored
37 38
    // 帮助中心右侧自助服务某一位置点击埋点
    $('.self-service a').on('click', function() {
39
        yas.yasEvent('YB_HELP_SERVICE_C', {
王水玲 authored
40 41 42
            POS_ID: $(this).data('index'),
            POS_NM: $(this).find('p').html()
        });
王水玲 authored
43 44
    });
王水玲 authored
45 46
    // 帮助中心右侧常见问题某一位置点击埋点
    $('.problem a').on('click', function() {
47
        yas.yasEvent('YB_HELP_QUESTION_C', {
王水玲 authored
48 49 50 51
            POS_ID: $(this).index() + 1,
            POS_NM: $(this).data('ask')
        });
    });
王水玲 authored
52 53
});