index.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html lang="">
  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 %>favicon.ico">
  8. <title>
  9. <%= htmlWebpackPlugin.options.title %>
  10. </title>
  11. <script>
  12. window.webConfig = {
  13. "webApiBaseUrl": "https://wrjh5.zzots.cn/zh-admin",
  14. "webSystemTitle": "正式"
  15. }
  16. </script>
  17. </head>
  18. <style>
  19. /* 加载动画的样式 */
  20. #loading {
  21. position: fixed;
  22. top: 0;
  23. left: 0;
  24. width: 100%;
  25. height: 100%;
  26. background-color: white;
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. z-index: 9999;
  31. }
  32. .spinner {
  33. border: 2px solid rgba(0, 0, 0, 0.1);
  34. border-left-color: #000;
  35. border-radius: 50%;
  36. width: 40px;
  37. height: 40px;
  38. animation: spin 1s linear infinite;
  39. }
  40. @keyframes spin {
  41. to {
  42. transform: rotate(360deg);
  43. }
  44. }
  45. </style>
  46. <body>
  47. <noscript>
  48. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  49. Please enable it to continue.</strong>
  50. </noscript>
  51. <div id="app"></div>
  52. <!-- built files will be auto injected -->
  53. </body>
  54. </html>