lida-app/index.html
minglipro 921d454640
feat:初始提交
- 新建项目结构和基础配置
- 添加用户登录和车号查询功能
- 实现消息提示和加载指令
- 配置路由和全局状态管理
2025-08-20 09:08:46 +08:00

31 lines
648 B
HTML

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
<link href="/src/resource/img/icon.png" rel="icon">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html body main[main] {
height: 100vh;
}
</style>
<title>利达外调服务平台</title>
</head>
<body>
<main main>
<div
style="display: flex;justify-content: center;align-items: center;height:
100vh;width: 100%;">
加载中...
</div>
</main>
<script src="/src/main.ts" type="module"></script>
</body>
</html>