fix(项目配置): 消息管理通知接收人选项问题
This commit is contained in:
parent
97e38804a8
commit
4ac754fb5a
|
@ -109,8 +109,8 @@
|
||||||
v-xpack
|
v-xpack
|
||||||
type="button"
|
type="button"
|
||||||
@click="editRobot(record, dataIndex as string)"
|
@click="editRobot(record, dataIndex as string)"
|
||||||
>{{ t('common.setting') }}</MsButton
|
>{{ t('common.setting') }}
|
||||||
>
|
</MsButton>
|
||||||
</div>
|
</div>
|
||||||
<span v-else></span>
|
<span v-else></span>
|
||||||
</template>
|
</template>
|
||||||
|
@ -225,6 +225,7 @@
|
||||||
name: string;
|
name: string;
|
||||||
rowspan?: number;
|
rowspan?: number;
|
||||||
projectRobotConfigMap: Record<string, ProjectRobotConfig>;
|
projectRobotConfigMap: Record<string, ProjectRobotConfig>;
|
||||||
|
|
||||||
[key: string]: any;
|
[key: string]: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -343,6 +344,10 @@
|
||||||
// 缺陷同步任务, 只显示操作人
|
// 缺陷同步任务, 只显示操作人
|
||||||
options = options.filter((e) => !['CREATE_USER', 'FOLLOW_PEOPLE', 'HANDLE_USER'].includes(e.id));
|
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;
|
return options;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -445,6 +450,7 @@
|
||||||
background-color: var(--color-text-n9);
|
background-color: var(--color-text-n9);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
:deep(.arco-select-view-multiple.arco-select-view-size-medium .arco-select-view-tag) {
|
:deep(.arco-select-view-multiple.arco-select-view-size-medium .arco-select-view-tag) {
|
||||||
margin-top: 1px;
|
margin-top: 1px;
|
||||||
margin-bottom: 1px;
|
margin-bottom: 1px;
|
||||||
|
|
Loading…
Reference in New Issue