From ef8550bac0fae9043ffa5b5b0aafc99e54d85d7d Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Sat, 15 Oct 2022 16:56:17 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):=20?= =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89=E5=AD=97=E6=AE=B5=E5=A4=9A=E9=80=89?= =?UTF-8?q?=E6=88=90=E5=91=98=E7=B1=BB=E5=9E=8B=EF=BC=8C=E9=80=89=E9=A1=B9?= =?UTF-8?q?=E4=B8=BA=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1018108 --user=陈建星 【项目设置】模版管理-创建字段类型是多选和单选成员后,可选成员列表是空 https://www.tapd.cn/55049933/s/1262526 --- .../frontend/src/components/template/CustomFiledComponent.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/sdk-parent/frontend/src/components/template/CustomFiledComponent.vue b/framework/sdk-parent/frontend/src/components/template/CustomFiledComponent.vue index 51ba7632d9..057d90b0ff 100644 --- a/framework/sdk-parent/frontend/src/components/template/CustomFiledComponent.vue +++ b/framework/sdk-parent/frontend/src/components/template/CustomFiledComponent.vue @@ -156,7 +156,7 @@ export default { } } } - if (this.data.type.indexOf("member") < 0) { + if (['member', 'multipleMember'].indexOf(this.data.type) < 0) { return; } getProjectMemberOption()