-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
40 lines (40 loc) · 1.36 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
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no,user-scalable=0">
<link rel="icon" type="image/svg+xml" href="/img/logo.svg">
<title>admin template kit</title>
<script>
let host ="https://api.senseui.im/api"
//let host ="http://localhost:3301/api"
window.appConf = {
"lang":"en",
"theme":"",
"mWidth":900,
"api":{
login : `${host}/auth/login`,
logout : `${host}/auth/logout`,
userInfo : `${host}/userinfo`,
userList : `${host}/userlist`,
sysInfo : `${host}/sys/info`,
tasks : `${host}/task/list`,
records : `${host}/records/list`,
top : `${host}/top`,
statistics:`${host}/statistics/list`
}
}
</script>
<link rel="stylesheet" href="/lib/element-ui.css">
<link rel="stylesheet" href="/lib/el-icon.css">
</head>
<body>
<noscript>
<strong>We're sorry but admin-base-tmpl doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="main-app"></div>
<!-- built files will be auto injected -->
<script type="module" src="/src/main.ts"></script>
</body>
</html>