Skip to content

Commit 092a8ac

Browse files
committed
feat: 抄送添加摘要
1 parent a88c86d commit 092a8ac

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/views/bpm/task/copy/index.vue

+9
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,15 @@
4646
<el-table v-loading="loading" :data="list">
4747
<!-- TODO 芋艿:增加摘要 -->
4848
<el-table-column align="center" label="流程名" prop="processInstanceName" min-width="180" />
49+
<el-table-column label="摘要" prop="summary" min-width="180">
50+
<template #default="scope">
51+
<div class="flex flex-col" v-if="scope.row.summary && scope.row.summary.length > 0">
52+
<div v-for="(item, index) in scope.row.summary" :key="index">
53+
<el-text type="info"> {{ item.key }} : {{ item.value }} </el-text>
54+
</div>
55+
</div>
56+
</template>
57+
</el-table-column>
4958
<el-table-column
5059
align="center"
5160
label="流程发起人"

0 commit comments

Comments
 (0)