From 57079692644f431c5cede9e47f1f49f5e8cb846b Mon Sep 17 00:00:00 2001 From: shiziyuan9527 Date: Thu, 18 Aug 2022 13:54:38 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):=20?= =?UTF-8?q?=E7=BC=BA=E9=99=B7=E7=AE=A1=E7=90=86=E7=9A=84=E9=AB=98=E7=BA=A7?= =?UTF-8?q?=E6=90=9C=E7=B4=A2=E4=B8=AD=E5=88=9B=E5=BB=BA=E4=BA=BA=E6=97=A0?= =?UTF-8?q?=E6=B3=95=E5=88=97=E5=87=BA=E6=89=80=E6=9C=89=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E6=88=90=E5=91=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1015962 --user=李玉号 【测试跟踪】github#16974,缺陷管理的高级搜索中创建人无法列出所有项目成员 https://www.tapd.cn/55049933/s/1226382 Closes #16974 --- .../common/components/search/search-components.js | 2 +- .../src/business/components/track/issue/IssueList.vue | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/business/components/common/components/search/search-components.js b/frontend/src/business/components/common/components/search/search-components.js index b200715234..bc380446ba 100644 --- a/frontend/src/business/components/common/components/search/search-components.js +++ b/frontend/src/business/components/common/components/search/search-components.js @@ -302,7 +302,7 @@ export const CREATOR = { } } }, - options: MS_USER_OPTIONS, + options: MS_PROJECT_USER_OPTIONS, props: { multiple: true }, diff --git a/frontend/src/business/components/track/issue/IssueList.vue b/frontend/src/business/components/track/issue/IssueList.vue index 586937c7c9..33387dca00 100644 --- a/frontend/src/business/components/track/issue/IssueList.vue +++ b/frontend/src/business/components/track/issue/IssueList.vue @@ -261,10 +261,10 @@ export default { this.userFilter = data.map(u => { return {text: u.name, value: u.id}; }); - }); - getIssuePartTemplateWithProject((template) => { - this.initFields(template); - this.page.result.loading = false; + getIssuePartTemplateWithProject((template) => { + this.initFields(template); + this.page.result.loading = false; + }); }); this.getIssues(); });