src/main/resources/application.yml | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/main/webapp/static/css/pda.css | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/main/webapp/views/pda/index.html | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/main/webapp/views/pda/stockIn.html | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/main/resources/application.yml
@@ -14,7 +14,7 @@ # password: xltys1995 # sql-server driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver url: jdbc:sqlserver://localhost:1433;databasename=htasrs url: jdbc:sqlserver://192.168.2.250:1433;databasename=htasrs username: sa password: sa@123 mvc: src/main/webapp/static/css/pda.css
@@ -31,7 +31,11 @@ line-height: 30px; } #code { width: 70%; width: 65%; height: 40px; } #node { width: 65%; height: 40px; } header button { src/main/webapp/views/pda/index.html
@@ -74,13 +74,12 @@ <!-- 导航栏 --> <ul class="nav"> <li><a id="comb" onclick="nav(this.id)" class="nav-select" href="#">组托</a></li> <li><a id="combPro" onclick="nav(this.id)" class="nav-unselect" href="#">关联组托</a></li> <li><a id="stockIn" onclick="nav(this.id)" class="nav-unselect" href="#">入库</a></li> <li><a id="stockIn" onclick="nav(this.id)" class="nav-unselect" href="#">上架</a></li> <li><a id="stockOut" onclick="nav(this.id)" class="nav-unselect" href="#">出库</a></li> </ul> <!-- 主体内容 --> <iframe id="content" src="comb.html"></iframe> <iframe id="content" src="stockIn.html"></iframe> </body> <script> src/main/webapp/views/pda/stockIn.html
@@ -71,18 +71,12 @@ <!-- 头部 --> <header> <div class="layui-input-inline"> <label class="layui-form-label">托盘码</label> <label class="layui-form-label" style="width: 84px">托盘码</label> <input class="layui-input" type="text" id="code" onkeyup="findCode(this)" oninput="if(value.length>8)value=value.slice(0,8)" placeholder="扫码 / 输入" autocomplete="off"> </div> <div style="margin: 5px 5px" class="layui-form"> <button id="mat-btn" type="button" class="layui-btn layui-btn-normal" onclick="getMat()"><i class="layui-icon">+</i>提取</button> <!-- 入库口 --> <div class="layui-inline" style="width: 120px; margin-left: 15px"> <select id="putSiteSelect"> <option value="">入库口</option> </select> </div> <div STYLE="margin: 5px 0" class="layui-input-inline"> <label class="layui-form-label">上架货位</label> <input class="layui-input" type="text" id="node" onkeyup="findNode(this)" placeholder="扫码 / 输入" autocomplete="off"> </div> </header> @@ -137,6 +131,13 @@ } } function findNode(el) { if (el.value.length === 7) { $('#mat-btn').focus(); getMat(); } } // 获取入库口 function getInBound(){ $.ajax({