feat(web): 完成基本适配

This commit is contained in:
v-zhangjc9
2025-05-09 11:21:57 +08:00
parent fa295b15c6
commit de445d7061
24 changed files with 10780 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<!doctype html>
<html lang="zh">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Hudi 服务总台</title>
<style>
html, body, #root {
position: absolute;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>