index.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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="https://unpkg.com/ajax-hook@2.0.3/dist/ajaxhook.min.js">
  30. </script> -->
  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. <input type="text" name="code" class="code" />
  52. </form>
  53. </body>
  54. </html>