feat: BPM-更多设置-摘要设置

This commit is contained in:
LesanOuO
2025-01-24 13:11:12 +08:00
parent 7043dea354
commit 8ff63622ec
5 changed files with 108 additions and 30 deletions

View File

@ -130,6 +130,15 @@
<ContentWrap>
<el-table v-loading="loading" :data="list">
<el-table-column label="流程名称" align="center" prop="name" min-width="200px" fixed="left" />
<el-table-column label="摘要" prop="summary" min-width="180" fixed="left">
<template #default="scope">
<div class="flex flex-col" v-if="scope.row.summary && scope.row.summary.length > 0">
<div v-for="(item, index) in scope.row.summary" :key="index">
<el-text type="info"> {{ item.key }} : {{ item.value }} </el-text>
</div>
</div>
</template>
</el-table-column>
<el-table-column
label="流程分类"
align="center"