Skip to content

Commit a88c86d

Browse files
committed
feat: 摘要设置代码评审修改
1 parent d295477 commit a88c86d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,10 @@
122122
<ContentWrap>
123123
<el-table v-loading="loading" :data="list">
124124
<el-table-column align="center" label="流程" prop="processInstance.name" width="180" />
125-
<el-table-column label="摘要" prop="summary" min-width="180">
125+
<el-table-column label="摘要" prop="processInstance.summary" min-width="180">
126126
<template #default="scope">
127-
<div class="flex flex-col" v-if="scope.row.summary && scope.row.summary.length > 0">
128-
<div v-for="(item, index) in scope.row.summary" :key="index">
127+
<div class="flex flex-col" v-if="scope.row.processInstance.summary && scope.row.processInstance.summary.length > 0">
128+
<div v-for="(item, index) in scope.row.processInstance.summary" :key="index">
129129
<el-text type="info"> {{ item.key }} : {{ item.value }} </el-text>
130130
</div>
131131
</div>

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@
105105
<ContentWrap>
106106
<el-table v-loading="loading" :data="list">
107107
<el-table-column align="center" label="流程" prop="processInstance.name" width="180" />
108-
<el-table-column label="摘要" prop="summary" min-width="180">
108+
<el-table-column label="摘要" prop="processInstance.summary" min-width="180">
109109
<template #default="scope">
110-
<div class="flex flex-col" v-if="scope.row.summary && scope.row.summary.length > 0">
111-
<div v-for="(item, index) in scope.row.summary" :key="index">
110+
<div class="flex flex-col" v-if="scope.row.processInstance.summary && scope.row.processInstance.summary.length > 0">
111+
<div v-for="(item, index) in scope.row.processInstance.summary" :key="index">
112112
<el-text type="info"> {{ item.key }} : {{ item.value }} </el-text>
113113
</div>
114114
</div>

0 commit comments

Comments
 (0)