Index.cshtml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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="height:20px;">
  61. <div class="">
  62. <label class="">
  63. 修改库存状态信息
  64. </label>
  65. </div>
  66. </div>
  67. <div>
  68. <input id="Code" type="text" class="form-control" placeholder="请输入对应任务的条码" />
  69. <div id="InvStateCode" class="form-control" style="width:280px;height:30px;margin-bottom:25px;margin-left:0px;"></div>
  70. </div>
  71. <div style="margin-top:15px;">
  72. <div class=" btn-group btn-group-sm">
  73. <a id="Update_StockState" class="btn btn-warning"><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="CellCode" type="text" class="form-control" placeholder="请输入货位编号" />
  89. <div class='FlexContainer'>
  90. <div id="Status" style="width:139px;height:30px; margin-left:0px;"></div>
  91. </div>
  92. </div>
  93. <div style="margin-top:15px;">
  94. <div class=" btn-group btn-group-sm">
  95. <a id="Update_CellState" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i>&nbsp;确定</a>
  96. </div>
  97. </div>
  98. </section>
  99. </div>
  100. </section>
  101. <div class="lr-layout-body" id="gridtable"></div>
  102. </div>
  103. </div>
  104. </div>
  105. <script>
  106. var weburl = '@ViewBag.FJWMSWebAPIUrl';
  107. </script>
  108. @Html.AppendJsFile("/Areas/KLHCManager/Views/ErrorDispose/Index.js")