index.html 972 B

12345678910111213141516171819202122232425
  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. <!-- 引入 Material Symbols Outlined 字体图标 -->
  9. <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
  10. <!-- 在任何JS模块加载之前保存原始URL(用于票据认证) -->
  11. <script>
  12. window.__ORIGINAL_URL__ = window.location.href;
  13. window.__ORIGINAL_SEARCH__ = window.location.search;
  14. window.__ORIGINAL_HASH__ = window.location.hash;
  15. console.log('🔒 [index.html] 已保存原始URL:', window.__ORIGINAL_URL__);
  16. </script>
  17. </head>
  18. <body>
  19. <div id="app"></div>
  20. <script type="module" src="/src/main.js"></script>
  21. </body>
  22. </html>