Files
xj-screen/index.html
T
weixin a97d9c64aa update
1.新疆大屏新需求
2025-09-19 18:34:40 +08:00

38 lines
892 B
HTML

<!doctype html>
<html lang="zh">
<head>
<meta charset="UTF-8"/>
<link rel="icon" type="image/svg+xml" href="/screen.svg"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>应急就医服务中心</title>
<!-- 全局配置 -->
<script>
// 默认值(可选)
window.__APP_ENV__ = {
VITE_GLOB_API_URL: '', // 占位符,Docker 替换
};
window._AMapSecurityConfig = {
securityJsCode: "1b3b86585c863d22db1e7f7636a9e495",
}
</script>
</head>
<style>
html, body, #app {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
box-sizing: border-box;
overflow: hidden;
}
* {
box-sizing: border-box;
}
</style>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>