Index - 副本.cshtml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. @using WMS.BZWeb;
  2. @{
  3. ViewBag.Title = "货位";
  4. Layout = "~/Views/Shared/_Index.cshtml";
  5. }
  6. <div class="lr-layout ">
  7. <div class="lr-layout-center">
  8. <div class="lr-layout-wrap lr-layout-wrap-notitle ">
  9. <div class="lr-layout-tool">
  10. <div class="lr-layout-tool-left">
  11. <div class="col-xs-6 lr-form-item" style="margin-top:10px;">
  12. <div class="lr-form-item-title">仓库:</div>
  13. <div id="locWareHouse" isvalid="yes" checkexpession="NotNull"></div>
  14. @*<select class="form-control" id="locWareHouse" style="width:100px;"></select>*@
  15. </div>
  16. <div class="col-xs-4 lr-form-item" style="margin-top:10px;margin-left:10px;display:inline-flex">
  17. <div class="lr-form-item-title">行数</div>
  18. <span id="minValue" style="margin-top:6px;">1</span>
  19. <input id="lineNum" type="range" name="points" min="1" max="12" step="1" style="margin-top:3px;width:200px;margin-left:3px;" />
  20. <span id="maxValue" style="margin-top:6px;margin-left:3px">2</span>
  21. </div>
  22. <div class="col-xs-1 lr-form-item" style="margin-top:12px;margin-left:-20px">
  23. <input type="number" min="1" value="1" id="lineValue" style="width:60px;" />
  24. </div>
  25. </div>
  26. <div class="lr-layout-tool-right">
  27. <div class=" btn-group btn-group-sm">
  28. <a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i>&nbsp;<span class="lrlg">刷新</span></a>
  29. </div>
  30. </div>
  31. </div>
  32. <div style="position:absolute;top:70px;right:150px;display:flex;">
  33. <div style="height:20px;width:20px;background-color:#ccc;margin-left:10px;margin-right:5px;"></div>停用
  34. <div style="height:20px;width:20px;background-color:#4EEE94;margin-left:10px;margin-right:5px;"></div>空货位
  35. <div style="height:20px;width:20px;background-color:#191970;margin-left:10px;margin-right:5px;"></div>已存储
  36. <div style="height:20px;width:20px;background-color:#CD69C9;margin-left:10px;margin-right:5px;"></div>入锁
  37. <div style="height:20px;width:20px;background-color:#CD0000;margin-left:10px;margin-right:5px;"></div>出锁
  38. </div>
  39. <div id="echart" style="width:100vw;height:calc(100vh - 50px)"></div>
  40. </div>
  41. </div>
  42. </div>
  43. @Html.AppendJsFile("/Areas/FJManager/Views/QueryCell/Index.js")