print.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
  7. <title>Document</title>
  8. <style>
  9. body {
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. }
  14. .btn {
  15. background: #047ef8;
  16. padding: 8px 30px;
  17. color: white;
  18. font-size: 18px;
  19. margin-left: 50px;
  20. border-radius: 3px;
  21. cursor: pointer;
  22. user-select: none;
  23. -ms-user-select: none;
  24. }
  25. .btn:hover {
  26. opacity: 0.5;
  27. }
  28. </style>
  29. <script src="./static/js/jquery.min.js"></script>
  30. <script src="./static/js/js.cookie.min.js"></script>
  31. <script
  32. type="text/javascript"
  33. src="./static/js/ntkoofficecontrol.min.js"
  34. ></script>
  35. </head>
  36. <body
  37. onload="init()"
  38. style="text-align: center; height: 100vh; padding: 0px; margin: 0px"
  39. >
  40. <!-- <div class="btn">上传函件</div> -->
  41. <form id="myForm" style="display: none">
  42. <input type="text" name="token" class="tokenInput" />
  43. <input type="text" name="userId" class="userId" />
  44. <input type="text" name="matterID" class="matterID" />
  45. <input type="text" name="info" class="info" />
  46. <input type="text" name="taskId" class="taskId" />
  47. <input type="text" name="letter" class="letter" />
  48. </form>
  49. </body>
  50. </html>