| 12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>地块管理 - 爱智农</title>
- <style>
- html, body {
- margin: 0;
- padding: 0;
- height: 100%;
- width: 100%;
- overflow: hidden;
- }
-
- #content-frame {
- width: 100%;
- height: 100%;
- border: none;
- margin: 0;
- padding: 0;
- position: relative;
- z-index: 1;
- }
- </style>
- </head>
- <body>
- <iframe id="content-frame"
- src="field-management-content.html"
- sandbox="allow-scripts allow-forms allow-same-origin allow-modals allow-popups allow-popups-to-escape-sandbox"
- scrolling="auto"
- frameborder="0"></iframe>
- </body>
- </html>
|