fix(项目设置): 修改项目成员所属用户组时,无法选择没有开启工作空间共享的用户组

--bug=1022782 --user=李玉号 【项目设置】修改项目成员所属用户组时,无法选择没有开启工作空间共享的用户组
https://www.tapd.cn/55049933/s/1334197
This commit is contained in:
shiziyuan9527 2023-02-13 10:55:42 +08:00 committed by 刘瑞斌
parent ce1c9ffae4
commit 573cbb5a01
1 changed files with 2 additions and 1 deletions

View File

@ -156,7 +156,8 @@ export default {
let groupIds = this.form.groups.map(r => r.id);
this.dialogResult = this.$post('/user/group/list', {
type: GROUP_PROJECT,
resourceId: getCurrentWorkspaceId()
resourceId: getCurrentWorkspaceId(),
projectId: getCurrentProjectID(),
}, response => {
this.$set(this.form, "allgroups", response.data);
});