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.

88 lines
3.5 KiB

8 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. </head>
  22. <body>
  23. <div id="app">
  24. <input type="hidden" id="flag" value="${Session.split_flag!'N'}">
  25. <input type="hidden" id="split_cache_flag" value="${Session.split_cache_flag!'N' }" >
  26. <div class="mint-tab-container screenHeight">
  27. <header class="mint-header is-fixed">
  28. <div class="mint-header-button is-left">
  29. <div class="header-title">
  30. <a onclick="goBack()" class="go-back"><i class="mintui mintui-back"></i></a>
  31. <span>融欣MES - 分切入库</span>
  32. </div>
  33. </div>
  34. <h1 class="mint-header-title"></h1>
  35. <div class="mint-header-button is-right"></div>
  36. </header>
  37. <form autocomplete="off" class="ivu-form ivu-form-label-right">
  38. <div class="ivu-form-item">
  39. <label class="ivu-form-item-label" style="width: 90px;">请扫描卷号</label>
  40. <div class="ivu-form-item-content" style="margin-left: 90px;">
  41. <div class="ivu-input-wrapper ivu-input-type">
  42. <textarea autocomplete="off" spellcheck="false" id="rollNo"
  43. placeholder="请扫描卷号..." rows="2" autofocus="autofocus"
  44. class="ivu-input"
  45. style="height: 52px; min-height: 52px; max-height: 52px;"></textarea>
  46. </div>
  47. <!---->
  48. </div>
  49. </div>
  50. <div class="ivu-form-item">
  51. <label class="ivu-form-item-label" style="width: 78px;">接收仓库</label>
  52. <input id="select_depot" type="hidden" value="${Session.split_depot!'' }">
  53. <div class="ivu-form-item-content" style="margin-left: 90px;">
  54. <select class="webui-combobox" id="depot"
  55. data-options="editable:false" style="margin-left: 10px;width:80px;height: 30px;">
  56. <#list depots! as temp>
  57. <option value="${temp.mark! }">${temp.mark! }</option>
  58. </#list >
  59. </select>
  60. </div>
  61. </div>
  62. </form>
  63. <div class="ivu-row" id="rollCounts">
  64. <div class="r-left">已扫描记录</div>
  65. </div>
  66. <div class="ivu-row" style="margin-top: 10px;margin-left: 120px;">
  67. <div class="ivu-col ivu-col-span-11">
  68. <button type="button" onclick="endScan()" class="ivu-btn ivu-btn-primary">
  69. <span>结束</span>
  70. </button>
  71. </div>
  72. <div class="ivu-col ivu-col-span-11">
  73. <button onclick="goBack()" class="ivu-btn ivu-btn-primary">
  74. <span>返回</span>
  75. </button>
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. </body>
  81. <script type="text/javascript" src="/js/jquery/jquery-2.1.4.js"></script>
  82. <script type="text/javascript" src="/pda/layer/layer.js"></script>
  83. <script type="text/javascript" src="/pda/js/produce/split_receipt.js"></script>
  84. <script type="text/javascript" src="/js/jquery/jquery.cookie.js"></script>
  85. </html>