index.html 2.0 KB

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