31 lines
648 B
HTML
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>
|