overdue-notice.js 463 Bytes
var bp = require('./burying-point');
var $notice = $('.installment-overdue-notice');

$('.repay-list .notice').on('click', function() {
    $notice.show();

    // 统计:点击逾期说明时
    bp.setContYas('YB_INST_OVERDUE_INFO_CLICK', {});
    return false;
});

$('.think-ok, .mask-bg').on('click', function() {
    $notice.hide();
});


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

    return false;
});