旭捷内部项目管理系统
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.1 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. </head>
  22. <body>
  23. <div id="app">
  24. <div class="mint-tab-container screenHeight">
  25. <input type="hidden" id="dump_from" value="${Session.dump_from!'N'}">
  26. <input type="hidden" id="dump_to" value="${Session.dump_to!'N'}">
  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>${Session.dump_tags!''}</span>
  32. </div>
  33. </div>
  34. <h1 class="mint-header-title"></h1>
  35. <div class="mint-header-button is-right"></div>
  36. </header>
  37. <div class="ivu-form-item">
  38. <div class="r-left">请输入源仓库号:</div>
  39. <div class="ivu-form-item-content" style="margin-left: 90px;">
  40. <select class="webui-combobox" id="from_depot"
  41. data-options="editable:false" style="margin-left: 20px;width:120px;height: 30px;">
  42. <#list fromDepots! as temp>
  43. <option value="${temp.mark! }">${temp.mark! }</option>
  44. </#list >
  45. </select>
  46. </div>
  47. </div>
  48. <div class="ivu-form-item">
  49. <div class="r-left">请输入目的仓库号:</div>
  50. <div class="ivu-form-item-content" style="margin-left: 90px;">
  51. <select class="webui-combobox" id="to_depot"
  52. data-options="editable:false" style="margin-left: 20px;width:120px;height: 30px;">
  53. <#list toDepots! as temp>
  54. <option value="${temp.mark! }">${temp.mark! }</option>
  55. </#list >
  56. </select>
  57. </div>
  58. </div>
  59. <div class="ivu-row" style="margin-top: 10px;">
  60. <div class="ivu-col ivu-col-span-9">
  61. <button onclick="selectDepot()" class="ivu-btn ivu-btn-primary">
  62. <span>确认</span>
  63. </button>
  64. </div>
  65. <div class="ivu-col ivu-col-span-9">
  66. <button onclick="goBack()" class="ivu-btn ivu-btn-primary">
  67. <span>返回</span>
  68. </button>
  69. </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/dump/dump_depot.js"></script>
  77. <script type="text/javascript" src="/js/jquery/jquery.cookie.js"></script>
  78. </html>