Przeglądaj źródła

防止错误页返回主页出现嵌套问题

RuoYi 4 lat temu
rodzic
commit
a1ec9a6508

+ 1 - 1
ruoyi-admin/src/main/resources/templates/error/404.html

@@ -20,7 +20,7 @@
     <script th:inline="javascript">
       var ctx = [[@{/}]];
       function index() {
-          window.parent.frames.location.href = ctx + "index";
+    	  window.top.location = ctx + "index";
       }
     </script>
 </body>

+ 1 - 1
ruoyi-admin/src/main/resources/templates/error/500.html

@@ -21,7 +21,7 @@
     <script th:inline="javascript">
       var ctx = [[@{/}]];
       function index() {
-          window.parent.frames.location.href = ctx + "index";
+    	  window.top.location = ctx + "index";
       }
     </script>
 </body>

+ 1 - 1
ruoyi-admin/src/main/resources/templates/error/unauth.html

@@ -21,7 +21,7 @@
     <script th:inline="javascript">
       var ctx = [[@{/}]];
       function index() {
-          window.parent.frames.location.href = ctx + "index";
+    	  window.top.location = ctx + "index";
       }
     </script>
 </body>