index.html 802 B

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