var serverUrl = "http://192.168.2.207:8080/webroot/decision"; var reportLink = ""; if (dataType == "学校") { reportLink = serverUrl + "/view/report?viewlet=学校.cpt&name=" + encodeURIComponent(name) + "&policeStation=" + encodeURIComponent(policeStation) + ""; } else if (dataType == "学生") { reportLink = serverUrl + "/view/report?viewlet=学生.cpt&name=" + encodeURIComponent(name) + "&policeStation=" + encodeURIComponent(policeStation) + ""; } else{ reportLink=""; } // 打开链接 if (reportLink) { window.open(reportLink, "_blank"); // 在新标签页打开链接 } else { FR.Msg.alert("提示", "未匹配到对应数据类型的报表链接!"); } |