fix: 修复tab页下标重复问题

This commit is contained in:
zhaojuncheng
2025-03-25 08:43:34 +08:00
parent 48be0e883f
commit 53582ce762

View File

@ -18,9 +18,9 @@
<a-tab-pane :key="6" :tab="t('审批记录')">
<AuditRecord :processId="processId" :schemaId="schemaId" :xml="xml" />
</a-tab-pane>
<a-tab-pane :key="5 + index" v-for="(item, index) in predecessorTasks" :tab="item.schemaName">
<a-tab-pane :key="7 + index" v-for="(item, index) in predecessorTasks" :tab="item.schemaName">
<LookRelationTask
v-if="activeKey === 5 + index"
v-if="activeKey === 7 + index"
:taskId="item.taskId"
:processId="item.processId"
position="left"