let bp = require('./burying-point'); let $notice = $('.installment-overdue-notice'); $('.repay-list .notice').on('click', function() { $notice.show(); // 统计:点击逾期说明时 bp.setContYas({ op: 'YB_INST_OVERDUE_INFO_CLICK', appop: 'YB_H5_INST_OVERDUE_INFO_C' }, {}, true); return false; }); $('.think-ok, .mask-bg').on('click', function() { $notice.hide(); }); $('.installment-starting-service-page .notice').on('click', function() { $notice.show(); return false; }); $('.add-account-page .notice').on('click', function() { $notice.show(); }); $('body').attr('ontouchstart', true);