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