| 12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <link rel="icon" href="/favicon.ico">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
- <title>蜀道安全管理AI智能助手</title>
- <!-- 引入 Material Symbols Outlined 字体图标 -->
- <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" />
- <!-- 在任何JS模块加载之前保存原始URL(用于票据认证) -->
- <script>
- window.__ORIGINAL_URL__ = window.location.href;
- window.__ORIGINAL_SEARCH__ = window.location.search;
- window.__ORIGINAL_HASH__ = window.location.hash;
- console.log('🔒 [index.html] 已保存原始URL:', window.__ORIGINAL_URL__);
- </script>
- </head>
- <body>
- <div id="app"></div>
- <script type="module" src="/src/main.js"></script>
- </body>
- </html>
|