WorkBook1.cpt参数面板有一个按钮,如果点击按钮跳转到WorkBook2.cpt报表(类似于单元格做超链接打开网络报表),怎么写js
https://help.fanruan.com/finereport/doc-view-2128.html
window.location = encodeURI(encodeURI("${servletURL}?viewlet=报表路径"));
window.location = encodeURI(encodeURI("${servletURL}?viewlet=demo/analytics/收益分析联动.frm"));
或
var url=encodeURI(encodeURI("${servletURL}?viewlet=demo/analytics/收益分析联动.frm"));
window.open(url)