var REPORT_URL = '${servletURL}?viewlet=%E5%8E%9F%E6%B2%B9/(%E5%89%AF%E6%9C%AC)%E5%B8%82%E5%9C%BA%E9%83%A8-%E5%8E%9F%E6%B2%B9%E8%BF%90%E8%90%A5%E6%97%A5%E6%8A%A5%E5%88%86%E6%9E%90%EF%BC%88%E5%9B%9B%E5%8C%96%E5%90%8E%EF%BC%89.cpt&ref_t=design&op=write&ref_c=c7fa6250-c7b4-46cd-a45b-8c9ed059b734&tenant=pps&op=export&format=excel&extype=simple&ouname='+ ouname; var ouname = FR.remoteEvaluate('${ouname}'); // 获取参数的值 if (ouname === '张三') { FR.exportReport('excel', 2); // 导出第一个 Sheet 页 } else if (ouname === '李四') { FR.exportReport('excel', 3); // 导出第五个 Sheet 页 } window.location = encodeURI(REPORT_URL,ouname); finereport中的js中如何写如果参数为张三则导出第三个sheet页,如果参数为李四,则导出第四个sheet页,不管用呢 |