如果角色用户存在关联 角色不能改为禁用

ywj_dev
wangwei 2 years ago
parent 3aadc43b4a
commit 364188791b

@ -691,11 +691,19 @@ export default {
if (valid) {
if (this.form.roleId != undefined) {
this.form.menuIds = this.getMenuAllCheckedKeys();
if( this.form.menuIds.length==0){
this.$message.error("菜单权限不能为空");
return
}
updateRole(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
this.getCustomerList();
if(response.code === 20000) {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
this.getCustomerList();
}else{
this.$message.error(response.message);
}
});
} else {
this.form.menuIds = this.getMenuAllCheckedKeys();

Loading…
Cancel
Save