edit.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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: 10px 40px;
  17. color: white;
  18. font-size: 25px;
  19. margin-left: 50px;
  20. border-radius: 5px;
  21. cursor: pointer;
  22. letter-spacing: 3px;
  23. user-select: none;
  24. -ms-user-select: none;
  25. box-shadow: 0px 0px 3px black;
  26. }
  27. .btn:hover {
  28. opacity: 0.5;
  29. }
  30. </style>
  31. <script src="./static/js/jquery.min.js"></script>
  32. <script src="./static/js/js.cookie.min.js"></script>
  33. <script
  34. type="text/javascript"
  35. src="./static/js/ntkoofficecontrol.min.js"
  36. ></script>
  37. </head>
  38. <body
  39. onload="init()"
  40. style="text-align: center; height: 100vh; padding: 0px; margin: 0px"
  41. >
  42. <div class="btn">上传函件</div>
  43. <form id="myForm" style="display: none">
  44. <input type="text" name="token" class="tokenInput" />
  45. <input type="text" name="userId" class="userId" />
  46. <input type="text" name="matterID" class="matterID" />
  47. <input type="text" name="info" class="info" />
  48. <input type="text" name="taskId" class="taskId" />
  49. <input type="text" name="letter" class="letter" />
  50. <input type="text" name="businessID" class="businessID" />
  51. </form>
  52. </body>
  53. </html>