Index.cshtml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. @using WMS.BZWeb;
  2. @{
  3. ViewBag.Title = "异常处理页面";
  4. Layout = "~/Views/Shared/_Index.cshtml";
  5. }
  6. <style>
  7. .lr-scroll-horizontal {
  8. height: 12px;
  9. display: block;
  10. z-index: 100;
  11. }
  12. .lr-scroll-vertical {
  13. width: 12px;
  14. display: block;
  15. z-index: 100;
  16. }
  17. .FlexContainer {
  18. display: flex;
  19. flex-wrap: wrap;
  20. justify-content: flex-start;
  21. align-items: flex-start;
  22. align-content: flex-start;
  23. width: 100%;
  24. height: 100%;
  25. overflow: hidden;
  26. flex-direction: row;
  27. }
  28. .FlexContainer div {
  29. width: 300px;
  30. height: 200px;
  31. margin: 4px;
  32. --background-color: lightblue;
  33. }
  34. .ColFlexContainer {
  35. display: flex;
  36. flex-wrap: wrap;
  37. justify-content: flex-start;
  38. align-items: flex-start;
  39. align-content: flex-start;
  40. width: 95%;
  41. height: 80vh;
  42. overflow: hidden;
  43. flex-direction: column;
  44. }
  45. .ColFlexContainer div {
  46. width: 300px;
  47. height: 50px;
  48. margin: 4px;
  49. }
  50. .ColFlexContainer input {
  51. width: 280px;
  52. }
  53. </style>
  54. <div class="lr-layout">
  55. <div class="lr-layout-center">
  56. <div class="lr-layout-wrap lr-layout-wrap-notitle" style=" overflow-y:scroll">
  57. <section class='FlexContainer'>
  58. <div>
  59. <section class='ColFlexContainer'>
  60. <div style="margin-top:10px;">
  61. <label class="">
  62. 是否启用异常轮自动入库
  63. </label>
  64. <select id="isexception" style="width:160px;" placeholder="是否启用异常轮自动入库" class="form-control lr-select">
  65. <option value="">请选择</option>
  66. <option value="0">否</option>
  67. <option value="1">是</option>
  68. </select>
  69. </div>
  70. <div>
  71. <div class="btn-group btn-group-sm">
  72. <a id="lr_exception" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  73. <!-- <a id="lr_done" class="btn btn-default"><i class="fa fa-pencil-square-o"></i>&nbsp;完成</a>-->
  74. </div>
  75. </div>
  76. </section>
  77. </div>
  78. <div>
  79. <section class='ColFlexContainer'>
  80. <div style="height:20px;">
  81. <div class="">
  82. <label class="">
  83. 修改库存状态信息
  84. </label>
  85. </div>
  86. </div>
  87. <div>
  88. <input id="Code" type="text" class="form-control" placeholder="请输入工字轮条码" />
  89. <div id="InvStateCode" class="form-control" style="width:280px;height:30px;margin-bottom:25px;margin-left:0px;"></div>
  90. </div>
  91. <div style="margin-top:15px;">
  92. <div class=" btn-group btn-group-sm">
  93. <a id="Update_StockState" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  94. </div>
  95. </div>
  96. </section>
  97. </div>
  98. <div>
  99. <section class='ColFlexContainer'>
  100. <div style="height:20px;">
  101. <div class="">
  102. <label class="">
  103. 修改货位状态
  104. </label>
  105. </div>
  106. </div>
  107. <div>
  108. <input id="CellCode" type="text" class="form-control" placeholder="请输入货位编号" />
  109. <div class='FlexContainer'>
  110. <div id="WarehouseId" style="width:139px;height:30px; margin-left:0px;"></div> <div id="Status" class="form-control" style="width:134px;height:30px;margin-bottom:25px;margin-left:-2px;"></div>
  111. </div>
  112. </div>
  113. <div style="margin-top:15px;">
  114. <div class=" btn-group btn-group-sm">
  115. <a id="Update_CellState" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  116. </div>
  117. </div>
  118. </section>
  119. </div>
  120. </section>
  121. <div class="lr-layout-body" id="gridtable"></div>
  122. </div>
  123. </div>
  124. </div>
  125. <script>
  126. var weburl = '@ViewBag.FJWMSWebAPIUrl';
  127. </script>
  128. @Html.AppendJsFile("/Areas/FJManager/Views/ErrorDispose/Index.js")