diff --git a/src/views/system/role/index.vue b/src/views/system/role/index.vue index 0add3d3..1489804 100644 --- a/src/views/system/role/index.vue +++ b/src/views/system/role/index.vue @@ -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();