From 4ac754fb5afd0bbe0723d6d7fecda8fdf099994f Mon Sep 17 00:00:00 2001 From: song-cc-rock Date: Fri, 9 Aug 2024 15:39:46 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E9=A1=B9=E7=9B=AE=E9=85=8D=E7=BD=AE):=20?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E7=AE=A1=E7=90=86=E9=80=9A=E7=9F=A5=E6=8E=A5?= =?UTF-8?q?=E6=94=B6=E4=BA=BA=E9=80=89=E9=A1=B9=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../messageManagement/components/messageList.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/project-management/messageManagement/components/messageList.vue b/frontend/src/views/project-management/messageManagement/components/messageList.vue index 43fb5e84c8..1b68f81077 100644 --- a/frontend/src/views/project-management/messageManagement/components/messageList.vue +++ b/frontend/src/views/project-management/messageManagement/components/messageList.vue @@ -109,8 +109,8 @@ v-xpack type="button" @click="editRobot(record, dataIndex as string)" - >{{ t('common.setting') }} + >{{ t('common.setting') }} + @@ -225,6 +225,7 @@ name: string; rowspan?: number; projectRobotConfigMap: Record; + [key: string]: any; } @@ -343,6 +344,10 @@ // 缺陷同步任务, 只显示操作人 options = options.filter((e) => !['CREATE_USER', 'FOLLOW_PEOPLE', 'HANDLE_USER'].includes(e.id)); } + if (taskType.indexOf('BUG') === -1) { + // 非缺陷任务,不显示处理人 + options = options.filter((e) => !['HANDLE_USER'].includes(e.id)); + } return options; } @@ -445,6 +450,7 @@ background-color: var(--color-text-n9); } } + :deep(.arco-select-view-multiple.arco-select-view-size-medium .arco-select-view-tag) { margin-top: 1px; margin-bottom: 1px;