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.

130 lines
4.4 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="/js/bootstrap-3.3.7/css/bootstrap.min.css" rel="stylesheet">
  14. <link href="/js/bootstrap-3.3.7/css/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. <!-- layer的css样式 -->
  22. <link href="/layer/skin/layer.css" rel="stylesheet">
  23. </head>
  24. <body>
  25. <div id="app">
  26. <div data-v-45aee492="">
  27. <header class="mint-header is-fixed">
  28. <div class="mint-header-button is-left">
  29. <div class="header-title">
  30. <a href="/pda/productwarehouse/separateJoinRoll" class="go-back"><i class="mintui mintui-back"></i></a>
  31. <span>分卷</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" style="margin-left:40px;margin-top: 10px ">
  38. <div class="r-left ivu-row" style="margin-top: 5px">
  39. <div class="ivu-col ivu-col-span-8">请扫描卷:</div>
  40. <input id="rollno" class="ivu-col ivu-col-span-14"></input>
  41. </div>
  42. <div class="r-left ivu-row" style="margin-top: 5px">
  43. <div class="ivu-col ivu-col-span-8">当前卷数量:</div>
  44. <input id="rollQty" class="ivu-col ivu-col-span-14" disabled></input>
  45. </div>
  46. <div class="r-left ivu-row" style="margin-top: 5px">
  47. <div class="ivu-col ivu-col-span-8">拆卷数量:</div>
  48. <input id="pickQty" class="ivu-col ivu-col-span-14"></input>
  49. </div>
  50. </form>
  51. <div class="ivu-row" style="margin-top: 5px;">
  52. <div class="ivu-col ivu-col-span-30">
  53. <a href="#" onclick="splitRoll()" class="ivu-btn ivu-btn-primary">
  54. <span>确认拆分卷</span>
  55. </a>
  56. </div>
  57. </div>
  58. <div style="margin-top: 5px">
  59. <div class="ivu-table" style="font-size: 11px;" >
  60. <div class="ivu-table-header">
  61. <table style="width: 100%;" cellspacing="0" cellpadding="0"
  62. border="0" style="table-layout:fixed;">
  63. <colgroup>
  64. <col width="50%">
  65. <col width="30%">
  66. <col width="20%">
  67. </colgroup>
  68. <thead>
  69. <tr>
  70. <th class="" style="text-align:center">
  71. <span>卷号</span>
  72. </th>
  73. <th class="" style="text-align:center">
  74. <span>数量</span>
  75. </th>
  76. <th class="" style="text-align:center">
  77. <span>操作</span>
  78. </th>
  79. </tr>
  80. </thead>
  81. </table>
  82. </div>
  83. <div class="ivu-table-body" style="">
  84. <table style="width: 100%;" cellspacing="0" cellpadding="0"
  85. border="0">
  86. <colgroup>
  87. <col width="50%">
  88. <col width="30%">
  89. <col width="20%">
  90. </colgroup>
  91. <tbody class="ivu-table-tbody" id = "roll_table" >
  92. </tbody>
  93. </table>
  94. </div>
  95. <div class="ivu-table-tip" style="display: none;">
  96. <table cellspacing="0" cellpadding="0" border="0">
  97. <tbody>
  98. <tr>
  99. <td><span>暂无筛选结果</span></td>
  100. </tr>
  101. </tbody>
  102. </table>
  103. </div>
  104. </div>
  105. </div>
  106. <div class="ivu-row" style="margin-top: 20px">
  107. <div class="ivu-col ivu-col-span-30">
  108. <a href="/pda/productwarehouse/separateJoinRoll" class="ivu-btn ivu-btn-primary">
  109. <span>返回</span>
  110. </a>
  111. </div>
  112. </div>
  113. </div>
  114. </div>
  115. </body>
  116. <script type="text/javascript" src="/js/jquery/jquery-2.1.4.js"></script>
  117. <script type="text/javascript" src="/pda/layer/layer.js"></script>
  118. <script type="text/javascript" src="/pda/js/productwarehouse/split.js"></script>
  119. <script type="text/javascript" src="/js/bootstrap-3.3.7/js/bootstrap.js"></script>
  120. <script type="text/javascript" src="/js/bootstrap-3.3.7/js/bootstrap-table.js"></script>
  121. <script type="text/javascript" src="/js/bootstrap-3.3.7/js/bootstrap-table-zh-CN.js"></script>
  122. <script type="text/javascript" src="/js/jquery/jquery.cookie.js"></script>
  123. </html>