fix(脑图): bugFix
This commit is contained in:
parent
50ddbce197
commit
7994219799
|
@ -39,7 +39,7 @@
|
||||||
<div class="bug-item">
|
<div class="bug-item">
|
||||||
<div class="mb-[4px] flex items-center justify-between">
|
<div class="mb-[4px] flex items-center justify-between">
|
||||||
<MsButton type="text" @click="goBug(item.bugId)">{{ item.num }}</MsButton>
|
<MsButton type="text" @click="goBug(item.bugId)">{{ item.num }}</MsButton>
|
||||||
<MsButton v-if="hasEditPermission" type="text" @click="disassociateBug(item.id)">
|
<MsButton v-if="hasEditPermission && showType === 'link'" type="text" @click="disassociateBug(item.id)">
|
||||||
{{ t('ms.add.attachment.cancelAssociate') }}
|
{{ t('ms.add.attachment.cancelAssociate') }}
|
||||||
</MsButton>
|
</MsButton>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -233,12 +233,7 @@
|
||||||
</template>
|
</template>
|
||||||
</a-form>
|
</a-form>
|
||||||
<div v-if="hasEditPermission" class="flex items-center gap-[12px] bg-white pb-[16px]">
|
<div v-if="hasEditPermission" class="flex items-center gap-[12px] bg-white pb-[16px]">
|
||||||
<a-button
|
<a-button type="primary" :loading="loading" @click="handleConfigSave">
|
||||||
v-permission="['FUNCTIONAL_CASE:READ+UPDATE']"
|
|
||||||
type="primary"
|
|
||||||
:loading="loading"
|
|
||||||
@click="handleConfigSave"
|
|
||||||
>
|
|
||||||
{{ t('common.save') }}
|
{{ t('common.save') }}
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-button type="secondary" :disabled="loading" @click="handleConfigCancel">{{ t('common.cancel') }}</a-button>
|
<a-button type="secondary" :disabled="loading" @click="handleConfigCancel">{{ t('common.cancel') }}</a-button>
|
||||||
|
|
Loading…
Reference in New Issue