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);
- }
- });
- }
- });
- });