index.html 684 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>林产品溯源管理系统</title>
  7. </head>
  8. <body>
  9. <script type="text/javascript">
  10. const urlParams = new URLSearchParams(window.location.search);
  11. // 获取xxl_sso_sessionid的值
  12. const sessionId = urlParams.get('xxl_sso_sessionid');
  13. // console.log('sessionId', sessionId);
  14. if (sessionId) {
  15. window.location.href = "forstlogin/index.html?ver=" + new Date().getTime() + '&xxl_sso_sessionid=' + sessionId;
  16. } else {
  17. window.location.href = "forstlogin/index.html?ver=" + new Date().getTime();
  18. }
  19. </script>
  20. </body>
  21. </html>