From 9fb48d2d5aef246f13918fcbc834a5ffa41c2006 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期二, 16 六月 2020 09:20:21 +0800 Subject: [PATCH] # --- src/main/webapp/views/pakStore/locMove.html | 4 ++-- src/main/webapp/static/js/pakStore/locMove.js | 40 +++++++++++++++++++++++++++++++++++++++- 2 files changed, 41 insertions(+), 3 deletions(-) diff --git a/src/main/webapp/static/js/pakStore/locMove.js b/src/main/webapp/static/js/pakStore/locMove.js index df27e85..e6a1860 100644 --- a/src/main/webapp/static/js/pakStore/locMove.js +++ b/src/main/webapp/static/js/pakStore/locMove.js @@ -102,4 +102,42 @@ } }) -} \ No newline at end of file +} + +var tips; +function locStatus(el) { + let val = el.value; + if (val === null|| val === ""){ + return; + } + $.ajax({ + url: baseUrl+"/locMast/"+val+"/auth", + headers: {'token': localStorage.getItem('token')}, + dataType:'json', + method: 'POST', + success: function (res) { + if (res.code === 200) { + var status; + if (res.data != null) { + status = res.data.locType$; + } else { + status = "鏈壘鍒�"; + } + tips = layer.tips( + "<span style='color:#333;'>"+status+"</span>", + el, + { + tipsMore: true, + area: ['150px'], + tips: [3,'#fff'], + time:0 + ,maxWidth:500 + }); + } else if (res.code === 403) { + top.location.href = baseUrl+"/"; + } else { + layer.msg(res.msg); + } + } + }); +} diff --git a/src/main/webapp/views/pakStore/locMove.html b/src/main/webapp/views/pakStore/locMove.html index 2750b0f..1fa3a3c 100644 --- a/src/main/webapp/views/pakStore/locMove.html +++ b/src/main/webapp/views/pakStore/locMove.html @@ -79,14 +79,14 @@ <!-- 婧愬簱浣� --> <div class="layui-inline"> <div class="layui-input-inline"> - <input id="sourceLocNo" class="layui-input cool-auto-complete-div" type="text" placeholder="婧愬簱浣�" style="width: 150px;cursor: initial" autocomplete="off"> + <input id="sourceLocNo" class="layui-input cool-auto-complete-div" onkeyup="locStatus(this)" type="text" placeholder="婧愬簱浣�" style="width: 150px;cursor: initial" autocomplete="off"> </div> </div> <div class="layui-form-mid" style="float: none; display: inline-block; margin-left: 10px">-</div> <!-- 鐩爣搴撲綅 --> <div class="layui-inline"> <div class="layui-input-inline"> - <input id="targetLocNo" class="layui-input cool-auto-complete-div" type="text" placeholder="鐩爣搴撲綅" style="width: 150px;cursor: initial" autocomplete="off"> + <input id="targetLocNo" class="layui-input cool-auto-complete-div" onkeyup="locStatus(this)" type="text" placeholder="鐩爣搴撲綅" style="width: 150px;cursor: initial" autocomplete="off"> </div> </div> <button id="loc-move-btn" class="function-btn" onclick="locMove()" style="background: #4476A7;text-shadow: inherit;height: 45px;font-size: 15px;margin-left: 20px">搴撲綅绉昏浆</button> -- Gitblit v1.9.1