1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!--
- * @FilePath: index.html
- * @Author: 旭颖
- * @Date: 2023-05-06 18:21:58
- * @LastEditors: Please set LastEditors
- * @LastEditTime: 2023-06-03 15:30:08
- -->
- <!DOCTYPE html>
- <html lang="zh-cmn-Hans">
-
- <head>
- <script type="text/javascript">
- window._AMapSecurityConfig = {
- securityJsCode: '9648c57b0c188c03ab22d8857a1847e3',
- }
- </script>
- <script
- type="text/javascript"
- 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"
- ></script>
- <meta charset="utf-8" />
- <meta content="IE=edge" http-equiv="X-UA-Compatible" />
- <meta content="webkit" name="renderer" />
- <meta
- content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
- name="viewport"
- />
- <link href="<%= BASE_URL %>favicon.ico" rel="icon" />
- <title><%= VUE_APP_TITLE %></title>
- <meta
- content="<%= VUE_APP_TITLE %>"
- name="keywords"
- />
- <meta content="<%= VUE_APP_AUTHOR %>" name="author" />
- <link
- href="<%= BASE_URL %>static/css/loading.css?random=<%= VUE_APP_RANDOM %>"
- rel="stylesheet"
- />
- </head>
- <body>
- <noscript></noscript>
- <div id="app">
- <div class="first-loading-wrp">
- <div class="loading-wrp">
- <span class="dot dot-spin">
- <i></i>
- <i></i>
- <i></i>
- <i></i>
- </span>
- </div>
- <h1><%= VUE_APP_TITLE %></h1>
- </div>
- </div>
- <script>
- if (window.location.hostname !== 'localhost') {
- var _hmt = _hmt || []
- ;(function () {
- var hm = document.createElement('script')
- hm.src = 'https://hm.baidu.com/hm.js?085e0fa100dbc0e0e42931c16bf3e9e6'
- var s = document.getElementsByTagName('script')[0]
- s.parentNode.insertBefore(hm, s)
- })()
- }
- </script>
- </body>
- </html>
|