//模板路径var url = encodeURI(encodeURI("/webroot/decision/view/report?viewlet=GettingStarted.cpt"));//窗体var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>");//将窗体的src属性设置为模板路径$iframe.attr("src", url);//窗体的属性var o = { title: "对话框", //标题 width: 680, //宽度 height: 640, //高度 //closable:true, //是否显示关闭按钮,默认true //confirm:true, //是否添加确认取消按钮,默认false //draggable:true //是否可拖动,默认true};//弹出窗体FR.showDialog(o.title, o.width, o.height, $iframe, o);上面是别人的教程链接,如果我要打开的网络报表的文件路径是:D:\FineReport_10.0\webapps\webroot\WEB-INF\reportlets\对账\收款\结账记录表js代码中的路径应该怎么填写,试了好几种都不行,请教一下