diff --git a/ruoyi-admin/src/main/resources/static/img/profile.jpg b/ruoyi-admin/src/main/resources/static/img/profile.jpg index b3a940b21..91e9a7a35 100644 Binary files a/ruoyi-admin/src/main/resources/static/img/profile.jpg and b/ruoyi-admin/src/main/resources/static/img/profile.jpg differ 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 afd2919ad..2dec17c30 100644 --- a/ruoyi-admin/src/main/resources/templates/system/user/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/user/edit.html @@ -231,8 +231,11 @@ }); //如果用户状态为02(从OA同步),则将相关信息不能做变更 if(userType=="02") { - $("#email,#userName,#treeName,#phonenumber").attr("readonly", "readonly") - } + $("#email,#userName,#treeName,#phonenumber").attr("readonly", "readonly"); + $("#status").click(function(){ + this.checked = !this.checked; + }); + }; })