fix(缺陷管理): 缺陷复制权限

This commit is contained in:
baiqi 2024-06-25 18:44:32 +08:00 committed by 刘瑞斌
parent 41ac7ff3fd
commit abf16a888e
1 changed files with 11 additions and 2 deletions

View File

@ -71,14 +71,23 @@
/> />
{{ t('caseManagement.featureCase.follow') }} {{ t('caseManagement.featureCase.follow') }}
</MsButton> </MsButton>
<MsButton type="icon" status="secondary" class="mr-2 !rounded-[var(--border-radius-small)]"> <MsButton
v-permission="['PROJECT_BUG:READ+ADD', 'PROJECT_BUG:READ+DELETE']"
type="icon"
status="secondary"
class="mr-2 !rounded-[var(--border-radius-small)]"
>
<a-dropdown position="br" :hide-on-select="false"> <a-dropdown position="br" :hide-on-select="false">
<div> <div>
<icon-more class="mr-1" /> <icon-more class="mr-1" />
<span> {{ t('caseManagement.featureCase.more') }}</span> <span> {{ t('caseManagement.featureCase.more') }}</span>
</div> </div>
<template #content> <template #content>
<a-doption :disabled="props.currentPlatform !== detailInfo.platform" @click="handleCopy"> <a-doption
v-permission="['PROJECT_BUG:READ+ADD']"
:disabled="props.currentPlatform !== detailInfo.platform"
@click="handleCopy"
>
<MsIcon type="icon-icon_copy_filled" class="font-[16px]" /> <MsIcon type="icon-icon_copy_filled" class="font-[16px]" />
{{ t('common.copy') }} {{ t('common.copy') }}
</a-doption> </a-doption>