这个按钮设置的提交入库,功能是实现了,但是点击按钮的时候没有任何反馈,不能直接看出到底成没成功。
怎么样才能点击这个'驳回'按钮后,跟提交按钮一样在右边提示成功,然后关闭该页面,并且刷新父表。(该表是通过父表的单元格-条件属性-JavaScript超级链接打开的)
父表刷新代码:
window.parent._g().parameterCommit();
提交前确认代码:
FR.Msg.confirm("确认","确认提交吗?",function(value){
if(value){
//确认提交
}
else{}
},100)
Msg-https://help.fanruan.com/finereport/doc-view-603.html
写个js嘛。提示框的话。
https://help.fanruan.com/finereport/doc-view-603.html?source=1
这个连接里面有写法。