-
Notifications
You must be signed in to change notification settings - Fork 39
/
index.html
35 lines (34 loc) · 1.43 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>vite-vue-admin</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" />
</head>
<body>
<div id="app">
<img id="loadindImg" style="margin: auto;display: block;margin-top: 180px;width: 200px;" src="/logo.png" alt="">
<p id="loadingText" style="text-align: center;font-weight: bold;font-size: 30px;font-family: '微软雅黑';color: #AD49FF;">Vite-Vue-Admin</p>
</div>
<!-- 腾讯地图 -->
<!-- <script charset="utf-8" src="https://map.qq.com/api/js?v=2.exp&key=753BZ-JEZ62-YPUUO-CWXAM-ZZMG3-AGFZZ"></script> -->
<script async src="https://cdn.jsdelivr.net/npm/[email protected]/tinymce.min.js"></script>
<!-- katex 公式解析 -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"></script>
<!-- 流程图 -->
<!-- <script src="https://unpkg.com/mermaid/dist/mermaid.min.js"></script> -->
<script type="module" src="/src/main.ts"></script>
</body>
</html>
<script>
window._AMapSecurityConfig = {
securityJsCode: 'e47cfc8787f2276a6113dd6d550512c2',
}
</script>
<script type="text/javascript">
if (localStorage.getItem("themeColors")) {
document.getElementById('loadingText').style.color = localStorage.getItem("themeColors").split(`"`)[3]
}
</script>