overdue-notice.js
439 Bytes
var bp = require('./burying-point');
var $notice = $('.installment-overdue-notice');
$('.repay-list .notice').on('click', function() {
$notice.show();
// 统计:点击逾期说明时
bp.setContYas({}, true);
return false;
});
$('.think-ok, .mask-bg').on('click', function() {
$notice.hide();
});
$('.installment-starting-service-page .notice').on('click', function() {
$notice.show();
return false;
});