index.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  7. <link rel="icon" href="<%= BASE_URL %>icon.ico">
  8. <title><%= VUE_APP_TITLE %></title>
  9. <style>
  10. html, body, #app { height: 100%; margin: 0px; padding: 0px; }
  11. .d2-home { background-color: #303133; height: 100%; display: flex; flex-direction: column; }
  12. .d2-home__main { user-select: none; width: 100%; flex-grow: 1; display: flex; justify-content: center; align-items: center; flex-direction: column; }
  13. .d2-home__footer { width: 100%; flex-grow: 0; text-align: center; padding: 1em 0; }
  14. .d2-home__footer > a { font-size: 12px; color: #ABABAB; text-decoration: none; }
  15. .d2-home__loading { height: 32px; width: 32px; margin-bottom: 20px; }
  16. .d2-home__title { color: #FFF; font-size: 14px; margin-bottom: 10px; }
  17. .d2-home__sub-title { color: #ABABAB; font-size: 12px; }
  18. </style>
  19. <script>
  20. var _hmt = _hmt || [];
  21. var hmid = "1dfa88d0c8571eef2d383070cb3e5ca1";
  22. (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?" + hmid; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s);})();
  23. </script>
  24. </head>
  25. <body>
  26. <noscript>
  27. <strong>
  28. 很抱歉,如果没有 JavaScript 支持,系统将不能正常工作。请启用浏览器的 JavaScript 然后继续。
  29. </strong>
  30. </noscript>
  31. <div id="app">
  32. <div class="d2-home">
  33. <div class="d2-home__main">
  34. <img
  35. class="d2-home__loading"
  36. src="./image/loading/loading-spin.svg"
  37. alt="loading">
  38. <div class="d2-home__title">
  39. 正在加载资源
  40. </div>
  41. <div class="d2-home__sub-title">
  42. 初次加载资源可能需要较多时间 请耐心等待
  43. </div>
  44. </div>
  45. <div class="d2-home__footer">
  46. <a
  47. href="http://www.dashoo.cn"
  48. target="_blank">
  49. 青岛大数华创科技有限公司
  50. </a>
  51. </div>
  52. </div>
  53. </div>
  54. </body>
  55. </html>