123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
- <title>Document</title>
- <style>
- body {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .btn {
- background: #047ef8;
- padding: 8px 30px;
- color: white;
- font-size: 18px;
- margin-left: 50px;
- border-radius: 3px;
- cursor: pointer;
- user-select: none;
- -ms-user-select: none;
- }
- .btn:hover {
- opacity: 0.5;
- }
- </style>
- <!-- <script src="https://unpkg.com/ajax-hook@2.0.3/dist/ajaxhook.min.js">
- </script> -->
- <script src="./static/js/jquery.min.js"></script>
- <script src="./static/js/js.cookie.min.js"></script>
- <script
- type="text/javascript"
- src="./static/js/ntkoofficecontrol.min.js"
- ></script>
- </head>
- <body
- onload="init()"
- style="text-align: center; height: 100vh; padding: 0px; margin: 0px"
- >
- <div class="btn">上传函件</div>
- <form id="myForm" style="display: none">
- <input type="text" name="token" class="tokenInput" />
- <input type="text" name="userId" class="userId" />
- <input type="text" name="matterID" class="matterID" />
- <input type="text" name="info" class="info" />
- <input type="text" name="taskId" class="taskId" />
- <input type="text" name="letter" class="letter" />
- <input type="text" name="businessID" class="businessID" />
- <input type="text" name="code" class="code" />
- </form>
- </body>
- </html>
|