help-index.page.js
1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* [帮助中心首页]
* @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')
});
});
});