25 lines
889 B
HTML
25 lines
889 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="zh-CN">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Gemold - 模具制造管理系统</title>
|
||
|
|
<link rel="stylesheet" href="/static/style.css">
|
||
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="app">
|
||
|
|
<div class="loading-state" style="height: 100vh;">
|
||
|
|
<div class="spinner"></div>
|
||
|
|
<span>加载中...</span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<script src="https://unpkg.com/vue@3/dist/vue.global.prod.js"></script>
|
||
|
|
<script src="https://unpkg.com/vue-router@4/dist/vue-router.global.prod.js"></script>
|
||
|
|
<script src="/static/vue-app.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|