field-management.html 901 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>地块管理 - 爱智农</title>
  7. <style>
  8. html, body {
  9. margin: 0;
  10. padding: 0;
  11. height: 100%;
  12. width: 100%;
  13. overflow: hidden;
  14. }
  15. #content-frame {
  16. width: 100%;
  17. height: 100%;
  18. border: none;
  19. margin: 0;
  20. padding: 0;
  21. position: relative;
  22. z-index: 1;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <iframe id="content-frame"
  28. src="field-management-content.html"
  29. sandbox="allow-scripts allow-forms allow-same-origin allow-modals allow-popups allow-popups-to-escape-sandbox"
  30. scrolling="auto"
  31. frameborder="0"></iframe>
  32. </body>
  33. </html>