From 482f8500e751e7d97bcba3b8e3b5463b608dbb73 Mon Sep 17 00:00:00 2001 From: LSH Date: 星期一, 16 十月 2023 17:13:11 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/cstmr/cstmr.js | 19 +++++++++++++++++-- 1 files changed, 17 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/static/js/cstmr/cstmr.js b/src/main/webapp/static/js/cstmr/cstmr.js index 010f7c4..0537c31 100644 --- a/src/main/webapp/static/js/cstmr/cstmr.js +++ b/src/main/webapp/static/js/cstmr/cstmr.js @@ -433,10 +433,25 @@ }); }, on: function (data) { + console.log(data) let arr = data.arr - if (arr.length > 0) { + let change = data.change; + if (arr.length > 0 && change.length>0) { let name = arr[0].name; - console.log(name) + $.ajax({ + url: baseUrl + "/cstmr/name/check/auth", + headers: {'token': localStorage.getItem('token')}, + data: { + name: name + }, + method: 'POST', + success: function (res) { + if (res.code === 200) { + } else { + layer.msg(res.msg, {icon: 2}); + } + } + }); } } }); -- Gitblit v1.9.1