IntelligentRecognition/ah-jjsp-web/bns/js/public/remind.js

13 lines
271 B
JavaScript
Raw Permalink Normal View History

2024-05-24 16:09:40 +08:00
// 提醒
function remindInfo(content) {
top.layer.confirm('<font size="4" style="color:black">事件提醒:' + content + '</font>', {
icon: 7,
title: '提示',
offset:"rb",
shade:0,
anim:2,
move:false
}, function(index) {
top.layer.close(index)
});
}