123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- @using WMS.BZWeb;
- @{
- ViewBag.Title = "异常处理页面";
- Layout = "~/Views/Shared/_Index.cshtml";
- }
- <style>
- .lr-scroll-horizontal {
- height: 12px;
- display: block;
- z-index: 100;
- }
- .lr-scroll-vertical {
- width: 12px;
- display: block;
- z-index: 100;
- }
- .FlexContainer {
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start;
- align-items: flex-start;
- align-content: flex-start;
- width: 100%;
- height: 100%;
- overflow: hidden;
- flex-direction: row;
- }
- .FlexContainer div {
- width: 300px;
- height: 200px;
- margin: 4px;
- --background-color: lightblue;
- }
- .ColFlexContainer {
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start;
- align-items: flex-start;
- align-content: flex-start;
- width: 95%;
- height: 80vh;
- overflow: hidden;
- flex-direction: column;
- }
- .ColFlexContainer div {
- width: 300px;
- height: 50px;
- margin: 4px;
- }
- .ColFlexContainer input {
- width: 280px;
- }
- </style>
- <div class="lr-layout">
- <div class="lr-layout-center">
- <div class="lr-layout-wrap lr-layout-wrap-notitle" style=" overflow-y:scroll">
- <section class='FlexContainer'>
- <div>
- <section class='ColFlexContainer'>
- <div style="margin-top:10px;">
- <label class="">
- 是否启用异常轮自动入库
- </label>
- <select id="isexception" style="width:160px;" placeholder="是否启用异常轮自动入库" class="form-control lr-select">
- <option value="">请选择</option>
- <option value="0">否</option>
- <option value="1">是</option>
- </select>
- </div>
- <div>
- <div class="btn-group btn-group-sm">
- <a id="lr_exception" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i> 确定</a>
- <!-- <a id="lr_done" class="btn btn-default"><i class="fa fa-pencil-square-o"></i> 完成</a>-->
- </div>
- </div>
- </section>
- </div>
- <div>
- <section class='ColFlexContainer'>
- <div style="height:20px;">
- <div class="">
- <label class="">
- 修改库存状态信息
- </label>
- </div>
- </div>
- <div>
- <input id="Code" type="text" class="form-control" placeholder="请输入工字轮条码" />
- <div id="InvStateCode" class="form-control" style="width:280px;height:30px;margin-bottom:25px;margin-left:0px;"></div>
-
- </div>
- <div style="margin-top:15px;">
- <div class=" btn-group btn-group-sm">
- <a id="Update_StockState" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i> 确定</a>
- </div>
- </div>
- </section>
- </div>
- <div>
- <section class='ColFlexContainer'>
- <div style="height:20px;">
- <div class="">
- <label class="">
- 修改货位状态
- </label>
- </div>
- </div>
- <div>
-
- <input id="CellCode" type="text" class="form-control" placeholder="请输入货位编号" />
- <div class='FlexContainer'>
- <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>
- </div>
- </div>
- <div style="margin-top:15px;">
- <div class=" btn-group btn-group-sm">
- <a id="Update_CellState" class="btn btn-warning"><i class="fa fa-pencil-square-o"></i> 确定</a>
- </div>
- </div>
- </section>
- </div>
-
- </section>
- <div class="lr-layout-body" id="gridtable"></div>
- </div>
- </div>
- </div>
- <script>
- var weburl = '@ViewBag.FJWMSWebAPIUrl';
- </script>
- @Html.AppendJsFile("/Areas/FJManager/Views/ErrorDispose/Index.js")
|