123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- @using WMS.BZWeb;
- @{
- ViewBag.Title = "货位";
- Layout = "~/Views/Shared/_Index.cshtml";
- }
- <div class="lr-layout ">
- <div class="lr-layout-center">
- <div class="lr-layout-wrap lr-layout-wrap-notitle ">
- <div class="lr-layout-tool">
- <div class="lr-layout-tool-left">
- <div class="col-xs-6 lr-form-item" style="margin-top:10px;">
- <div class="lr-form-item-title">仓库:</div>
- <div id="locWareHouse" isvalid="yes" checkexpession="NotNull"></div>
- @*<select class="form-control" id="locWareHouse" style="width:100px;"></select>*@
- </div>
- <div class="col-xs-4 lr-form-item" style="margin-top:10px;margin-left:10px;display:inline-flex">
- <div class="lr-form-item-title">行数</div>
- <span id="minValue" style="margin-top:6px;">1</span>
- <input id="lineNum" type="range" name="points" min="1" max="12" step="1" style="margin-top:3px;width:200px;margin-left:3px;" />
- <span id="maxValue" style="margin-top:6px;margin-left:3px">2</span>
- </div>
- <div class="col-xs-1 lr-form-item" style="margin-top:12px;margin-left:-20px">
- <input type="number" min="1" value="1" id="lineValue" style="width:60px;" />
- </div>
- </div>
- <div class="lr-layout-tool-right">
- <div class=" btn-group btn-group-sm">
- <a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i> <span class="lrlg">刷新</span></a>
- </div>
- </div>
- </div>
- <div style="position:absolute;top:70px;right:150px;display:flex;">
- <div style="height:20px;width:20px;background-color:#ccc;margin-left:10px;margin-right:5px;"></div>停用
- <div style="height:20px;width:20px;background-color:#4EEE94;margin-left:10px;margin-right:5px;"></div>空货位
- <div style="height:20px;width:20px;background-color:#191970;margin-left:10px;margin-right:5px;"></div>已存储
- <div style="height:20px;width:20px;background-color:#CD69C9;margin-left:10px;margin-right:5px;"></div>入锁
- <div style="height:20px;width:20px;background-color:#CD0000;margin-left:10px;margin-right:5px;"></div>出锁
- </div>
- <div id="echart" style="width:100vw;height:calc(100vh - 50px)"></div>
- </div>
- </div>
- </div>
- @Html.AppendJsFile("/Areas/FJManager/Views/QueryCell/Index.js")
|