index.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!--
  2. * @FilePath: index.html
  3. * @Author: 旭颖
  4. * @Date: 2023-06-21 09:37:29
  5. * @LastEditors:
  6. * @LastEditTime: 2023-06-28 18:53:37
  7. -->
  8. <!DOCTYPE html>
  9. <html lang="zh-cmn-Hans">
  10. <head>
  11. <meta charset="utf-8" />
  12. <meta content="IE=edge" http-equiv="X-UA-Compatible" />
  13. <meta content="webkit" name="renderer" />
  14. <meta
  15. content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
  16. name="viewport"
  17. />
  18. <link href="<%= BASE_URL %>favicon.ico" rel="icon" />
  19. <title><%= VUE_APP_TITLE %></title>
  20. <meta
  21. content="<%= VUE_APP_TITLE %>"
  22. name="keywords"
  23. />
  24. <meta content="<%= VUE_APP_AUTHOR %>" name="author" />
  25. <link
  26. href="<%= BASE_URL %>static/css/loading.css?random=<%= VUE_APP_RANDOM %>"
  27. rel="stylesheet"
  28. />
  29. </head>
  30. <body>
  31. <noscript></noscript>
  32. <div id="app">
  33. <div class="first-loading-wrp">
  34. <div class="loading-wrp">
  35. <span class="dot dot-spin">
  36. <i></i>
  37. <i></i>
  38. <i></i>
  39. <i></i>
  40. </span>
  41. </div>
  42. <h1><%= VUE_APP_TITLE %></h1>
  43. </div>
  44. </div>
  45. <script>
  46. if (window.location.hostname !== 'localhost') {
  47. var _hmt = _hmt || []
  48. ;(function () {
  49. var hm = document.createElement('script')
  50. hm.src = 'https://hm.baidu.com/hm.js?085e0fa100dbc0e0e42931c16bf3e9e6'
  51. var s = document.getElementsByTagName('script')[0]
  52. s.parentNode.insertBefore(hm, s)
  53. })()
  54. }
  55. </script>
  56. </body>
  57. </html>