旭捷内部项目管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
3.0 KiB

10 months ago
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  8. <meta name="description" content="">
  9. <meta name="author" content="">
  10. <link rel="icon" href="/favicon.ico">
  11. <title>${projectTitle!"MESPda"}</title>
  12. <!-- Bootstrap core CSS -->
  13. <link href="/pda/bootstrap/3.3.7/bootstrap.min.css" rel="stylesheet">
  14. <link href="/pda/bootstrap/3.3.7/bootstrap-theme.min.css" rel="stylesheet">
  15. <link rel="stylesheet" type="text/css"
  16. href="/pda/jeasyui/themes/default/easyui.css">
  17. <link rel="stylesheet" type="text/css" href="/pda/jeasyui/themes/icon.css">
  18. <!-- Custom styles for this template -->
  19. <link href="/pda/css/base.css" rel="stylesheet">
  20. <link rel="stylesheet" type="text/css" href="/css/button.css">
  21. <style type="text/css">
  22. /* reset ivu-btn*/
  23. .ivu-btn{
  24. padding: 6px 6px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div id="app">
  30. <input type="hidden" id="flag" value="${Session.flag!'N'}">
  31. <div class="mint-tab-container screenHeight">
  32. <header class="mint-header is-fixed">
  33. <div class="mint-header-button is-left">
  34. <div class="header-title">
  35. <a onclick="goBack()" class="go-back"><i class="mintui mintui-back"></i></a>
  36. <span>融欣MES - 库存盘点</span>
  37. </div>
  38. </div>
  39. <h1 class="mint-header-title"></h1>
  40. <div class="mint-header-button is-right"></div>
  41. </header>
  42. <form autocomplete="off" class="ivu-form ivu-form-label-right">
  43. <div class="ivu-form-item">
  44. <label class="ivu-form-item-label" style="width: 90px;">请扫描卷号</label>
  45. <div class="ivu-form-item-content" style="margin-left: 90px;">
  46. <div class="ivu-input-wrapper ivu-input-type">
  47. <textarea autocomplete="off" spellcheck="false" id="rollNo"
  48. placeholder="请扫描卷号..." rows="2" autofocus="autofocus"
  49. class="ivu-input"
  50. style="height: 52px; min-height: 52px; max-height: 52px;"></textarea>
  51. </div>
  52. <!---->
  53. </div>
  54. </div>
  55. </form>
  56. <div class="ivu-row" style="margin-top: 10px;">
  57. <div class="ivu-col ivu-col-span-6" style="margin-left: 90px;">
  58. <button type="button" onclick="endScan()" class="ivu-btn ivu-btn-primary">
  59. <span>结束</span>
  60. </button>
  61. </div>
  62. <div class="ivu-col ivu-col-span-6">
  63. <button onclick="goBack()" class="ivu-btn ivu-btn-primary">
  64. <span>返回</span>
  65. </button>
  66. </div>
  67. </div>
  68. <div class="ivu-row" id="rollCounts">
  69. <div class="r-left" style="margin:0px;">已扫描记录</div>
  70. </div>
  71. </div>
  72. </div>
  73. </body>
  74. <script type="text/javascript" src="/js/jquery/jquery-2.1.4.js"></script>
  75. <script type="text/javascript" src="/pda/layer/layer.js"></script>
  76. <script type="text/javascript" src="/pda/js/inventory/inventory_check.js"></script>
  77. <script type="text/javascript" src="/js/jquery/jquery.cookie.js"></script>
  78. </html>