|
|
|
@ -19,6 +19,14 @@ layui.use(['element', 'form', 'table', 'layer', 'laydate', 'tree', 'dict', 'dtre |
|
|
|
|
*/ |
|
|
|
|
function save() { |
|
|
|
|
let userForm = $("#userForm").serializeObject(); |
|
|
|
|
if(userForm.userId === user.userId){ |
|
|
|
|
layer.alert('该操作包含数据权限等危险操作,所以您不能直接修改自己的用户数据,请联系您的上级主管', {icon:2}) |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
if(userForm.secretLevel > user.secretLevel){ |
|
|
|
|
layer.alert('无法为用户设置超过自身涉密等级的权限,您的涉密等级为【'+ DICT.getText('secret_level', user.secretLevel) +'】', {icon:2}) |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
form.on('submit(userForm)', function(){ |
|
|
|
|
$.post(ctx + "/sys/sysUser/save", userForm, function (data) { |
|
|
|
|
if (!data.flag) { |
|
|
|
|