index.html 759 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="icon" href="/favicon.ico">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  7. <title>蜀道安全管理AI智能助手</title>
  8. <!-- 在任何JS模块加载之前保存原始URL(用于票据认证) -->
  9. <script>
  10. window.__ORIGINAL_URL__ = window.location.href;
  11. window.__ORIGINAL_SEARCH__ = window.location.search;
  12. window.__ORIGINAL_HASH__ = window.location.hash;
  13. console.log('🔒 [index.html] 已保存原始URL:', window.__ORIGINAL_URL__);
  14. </script>
  15. </head>
  16. <body>
  17. <div id="app"></div>
  18. <script type="module" src="/src/main.js"></script>
  19. </body>
  20. </html>