Blame view

public/js/home/overdue-notice.js 653 Bytes
陈峰 authored
1 2
let bp = require('./burying-point');
let $notice = $('.installment-overdue-notice');
Aiden Xu authored
3 4 5 6

$('.repay-list .notice').on('click', function() {
    $notice.show();
王水玲 authored
7
    // 统计:点击逾期说明时
沈志敏 authored
8
    bp.setContYas({
陈峰 authored
9 10
        op: 'YB_INST_OVERDUE_INFO_CLICK',
        appop: 'YB_H5_INST_OVERDUE_INFO_C'
沈志敏 authored
11
    }, {}, true);
Aiden Xu authored
12 13 14 15 16 17
    return false;
});

$('.think-ok, .mask-bg').on('click', function() {
    $notice.hide();
});
徐炜 authored
18 19 20 21 22 23 24


$('.installment-starting-service-page .notice').on('click', function() {
    $notice.show();

    return false;
});
王水玲 authored
25
王水玲 authored
26 27 28
$('.add-account-page .notice').on('click', function() {
    $notice.show();
});
王水玲 authored
29 30

$('body').attr('ontouchstart', true);