From 8455fc91c8949b2af352ac6b8311fbc1d5d2a73d Mon Sep 17 00:00:00 2001 From: dshclm <3321914460@qq.com> Date: Fri, 26 Jul 2024 11:24:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/templates/system/user/edit.html | 23 +------------------ 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/ruoyi-admin/src/main/resources/templates/system/user/edit.html b/ruoyi-admin/src/main/resources/templates/system/user/edit.html index 4e06033..8fd5bff 100644 --- a/ruoyi-admin/src/main/resources/templates/system/user/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/user/edit.html @@ -17,7 +17,7 @@
- +
@@ -379,27 +379,6 @@ }); }); - $(document).ready(function(){ - $("#userName").blur(function(e){ - var text = $(this).val(); - if (text && text.trim() !== ''){ - $.ajax({ - type: "GET", - url: ctx + "system/user/getPinyin", - data: {name: text}, - dataType: 'json', - success: function(res) { - if (res.code == web_status.SUCCESS) { - $("#loginName").val(res.msg); - } - }, - error: function(error) { - $.modal.alertWarning(error); - } - }); - } - }); - });