index.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta name="description" content="Vap后台管理系统" />
  7. <link rel="icon" href="/favicon.ico" />
  8. <link rel="stylesheet" href="/splash-screen.css" />
  9. <title>上海垫圈厂管理平台</title>
  10. </head>
  11. <body>
  12. <script>
  13. let themeMode = "system"
  14. if (localStorage.getItem("vb_theme_mode_value")) {
  15. themeMode = localStorage.getItem("vb_theme_mode_value")
  16. }
  17. if (themeMode === "system") {
  18. themeMode = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light"
  19. }
  20. document.documentElement.setAttribute("data-bs-theme", themeMode)
  21. </script>
  22. <div id="app"></div>
  23. <div id="splash-screen" class="splash-screen">
  24. <img src="/media/logos/logo-dark.svg" class="dark-logo" alt="Vap dark logo" />
  25. <img src="/media/logos/logo.svg" class="light-logo" alt="Vap light logo" />
  26. <span>加载中 ...</span>
  27. </div>
  28. <script type="module" src="/src/main.ts"></script>
  29. </body>
  30. </html>