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/static/js/pakStore/locMove.js | 40 +++++++++++++++++++++++++++++++++++++++-
1 files changed, 39 insertions(+), 1 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);
+ }
+ }
+ });
+}
--
Gitblit v1.9.1