38 lines
1003 B
HTML
38 lines
1003 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>应急就医服务中心</title>
|
|
<!-- 全局配置 -->
|
|
<script>
|
|
window._CONFIG = {};
|
|
window._AMapSecurityConfig = {
|
|
securityJsCode: "1b3b86585c863d22db1e7f7636a9e495",
|
|
}
|
|
</script>
|
|
<script type="text/javascript"
|
|
src="https://webapi.amap.com/maps?v=2.0&key=4bbcb216b889f2d612cbed05ae6979c8&plugin=AMap.Driving"></script>
|
|
<script type="text/javascript" src="./public/amap.js"></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>
|