https://help.fanruan.com/finereport/doc-view-2279.html
那你可以试试这个删除行,另外首行删除后自动刷新可以在按钮点击后监听判断写js
//监听首行删除操作
this.options.datablock.dataBlock.getDesigner().addDeleteRowEventListener(function(event) {
// 判断是否是删除首行
if (event.rowIndex === 0) {
// 刷新页面
window.location.reload();
// 或者使用 FineReport 提供的 parameterCommit 接口,保留参数面板所选的控件值
// window.parent._g().parameterCommit();
}
});