1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| <!DOCTYPE html>
| <html lang="zh_CN">
| <head>
| <meta charset="utf-8"/>
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
| <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
| <title>智慧粮库管理系统</title>
| <style>
| body {
| background-color: #f8f9fa;
| font-family: 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
| }
| .container {
| min-height: 100vh;
| display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| padding: 20px;
| box-sizing: border-box;
| }
| </style>
| </head>
| <body>
| <div class="container">
| <h3>当前工单没有业务详细……</h3>
| </div>
| </body>
| </html>
|
|