| 1234567891011121314151617181920212223 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>四川路桥Maas算力平台</title>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
- <script>
- // OAuth2 SSO 回调重定向:将 /auth/callback?code=xxx 转为 hash 路由 /#/sso-callback?code=xxx
- (function() {
- var path = window.location.pathname;
- var search = window.location.search;
- if (path === '/auth/callback' && search) {
- window.location.replace('/#/sso-callback' + search);
- }
- })();
- </script>
- </head>
- <body>
- <div id="root"></div>
- <script type="module" src="/index.tsx"></script>
- </body>
- </html>
|