1、调整默认头像

2、如果用户状态为02(从OA同步),人员在职状态也不能做变更
This commit is contained in:
bo.yang 2021-08-02 11:56:30 +08:00
parent 188a53bf7f
commit 1b58ebf2e8
2 changed files with 5 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -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;
});
};
})
</script>
</body>