在普通版报表中做数据填报的修改提交,当用参数面板的参数控件定位到指定数据后并发生修改然后提交数据,想要实现提交成功后清空参数面板的参数
那就直接重新加载页面
填报页面优化技巧 https://help.fanruan.com/finereport/doc-view-613.html
$.each(this.options.form.name_widgets, function(i, item) {
if (item.getType() !== 'label' && item.getType() !== 'radiogroup') {
item.setValue("");
item.setText("");
item.reset();
}
});