倒计时消息提示框- FineReport帮助文档 - 全面的报表使用教程和学习资料
https://help.fanruan.com/finereport/doc-view-3533.html
这里面的是针对单模板的
而如果进这里改就是针对全局的
全局加一个加载事件
FR.Msg.toast=function (mes){new NoticeJs({
title: '',
type: 'success',
text: mes,
position: 'topCenter',
closeWith: ['button','click'],
timeout: 30,
modal: false,
progressBar: true,
callbacks: {
beforeShow: [],
onShow: [],
afterShow: [],
onClose: [],
afterClose: [],
onClick: [],
onHover: [function() {
console.log("success");
}]
},
animation: {
open: 'animated bounceInRight',
close: 'animated bounceOutLeft'
}
}).show()}