overdue-notice.js
335 Bytes
var $notice = $('.installment-overdue-notice');
$('.repay-list .notice').on('click', function() {
$notice.show();
return false;
});
$('.think-ok, .mask-bg').on('click', function() {
$notice.hide();
});
$('.installment-starting-service-page .notice').on('click', function() {
$notice.show();
return false;
});