1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!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="./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" />
- </form>
- </body>
- </html>
|