@ -579,9 +579,12 @@ export default {
const roleIds = row.roleId || this.ids;
this.$modal.confirm('是否确认删除该角色?').then(function () {
return delRole(roleIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).then(res => {
if (res.code === 20000) {
} else this.$modal.msgError(res.message);
}).catch(() => {
});
},