Jelajahi Sumber

Merge pull request #34 from zdyy/master

解决iframe下系统超时无法跳出iframe框架的问题
shuzheng 9 tahun lalu
induk
melakukan
1bb30908e8

+ 5 - 1
zheng-upms/zheng-upms-server/src/main/webapp/WEB-INF/jsp/sso/login.jsp

@@ -54,6 +54,10 @@
 alert('您已被强制下线!');
 top.location.href = '${basePath}/sso/login';
 </c:if>
+//解决iframe下系统超时无法跳出iframe框架的问题
+if (window != top){
+    top.location.href = location.href;
+}
 </script>
 </body>
-</html>
+</html>