| 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="en"> |  | <head> |  |     <meta charset="UTF-8"> |  |     <link rel="icon" type="image/x-icon" href="../static/image/favicon.ico" /> |  |     <title>AS / RS 操作手册</title> |  |     <style> |  |         html,body,div { |  |             height: 100%; |  |             overflow: hidden; |  |         } |  |         * { |  |             margin: 0; |  |         } |  |         embed { |  |             height: 100%; |  |         } |  |         iframe { |  |             width: 100%; |  |             height: 100%; |  |         } |  |     </style> |  | </head> |  | <body> |  |     <div> |  |         <iframe src="./1_自动仓库管理系统操作说明.pdf" frameborder="0"></iframe> |  |     </div> |  | </body> |  | </html> | 
 |