当导入数据提示 “导入成功”时,希望在提示语中显示导入数据的个数,例如 :“导入数据成功,总10条”.
在填报成功回调函数中查询最大的创建时间,因为同一批导入的数据创建时间是一致的,根据这个特点,获取最大的创建时间个数就是每次导入数据的条数;
因为回调函数中自定义了,提示语,所以需要去掉默认的提示语,在填报成功事件中隐藏默认提示语:$(".toast").hide();
单独做一个按钮设置回调函数,但是不能一定保证行数就是正确的
JS实现回调函数中自定义提示- FineReport帮助文档 - 全面的报表使用教程和学习资料 (fanruan.com)
var _obj = $(".x-table tr");
var _length = _obj.length-1;
if (fr_submitinfo.success) {
FR.Msg.toast('提交成功,总导入成功'+_length+"行");
} else {
FR.Msg.toast('提交失败,错误信息为:' + fr_submitinfo.failinfo);
}
web事件 导入后事件
有个excel导入后
https://help.fanruan.com/finereport/doc-view-1178.html
用JS获取总行数然后提示
https://help.fanruan.com/finereport/doc-view-5104.html
提示js接口
https://help.fanruan.com/finereport/doc-view-603.html#60ed61e57f3b0f58