| 12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <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>MES 工件排序系统</title>
- <style>
- body {
- margin: 0;
- padding: 0;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
- background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
- min-height: 100vh;
- overflow-x: hidden;
- }
-
- #app {
- min-height: 100vh;
- }
-
- * {
- box-sizing: border-box;
- }
- </style>
- </head>
- <body>
- <div id="app"></div>
- <script type="module" src="/src/main.js"></script>
- </body>
- </html>
|