123456789101112131415161718192021222324252627282930313233 |
- <!--
- * @Author: gcz saadmin@126.com
- * @Date: 2025-05-12 11:26:32
- * @LastEditors: gcz saadmin@126.com
- * @LastEditTime: 2025-05-21 17:22:57
- * @FilePath: \forest-traced-UI\index.html
- * @Description:
- *
- -->
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>林产品溯源管理系统</title>
- </head>
- <body>
- <script type="text/javascript">
- const urlParams = new URLSearchParams(window.location.search);
- // 获取xxl_sso_sessionid的值
- const sessionId = urlParams.get('xxl_sso_sessionid');
- // console.log('sessionId', sessionId);
- if (sessionId) {
- window.location.href = "login/index.html?ver=" + new Date().getTime() + '&xxl_sso_sessionid=' + sessionId;
- } else {
- window.location.href = "login/index.html?ver=" + new Date().getTime();
- }
- </script>
- </body>
- </html>
|