This commit is contained in:
那些花儿
2025-09-26 09:26:17 +08:00
parent dd9f161ab9
commit 41cbc8e90b
4 changed files with 25 additions and 28 deletions
@@ -88,7 +88,7 @@ const user = {
},
methods: {
handleStatClick(type) {
if (['todo', 'done', 'application'].includes(type)) {
if (['todo', 'done', 'started'].includes(type)) {
window.open('/flow/todoCenter?status=' + type)
} else if (type === 'notification') {
window.open('/platform/v4/msg')
@@ -228,10 +228,7 @@ layout("/layouts/v4/baseLayout.html"){
</el-table-column>
<el-table-column prop="taskName" label="任务节点" min-width="150"
show-overflow-tooltip></el-table-column>
<el-table-column prop="categoryName" label="流程分类" min-width="150" show-overflow-tooltip>
<template slot-scope="{row}">{{categoryOptions.find(item => item.id === row.category)?.name}}
</template>
</el-table-column>
<el-table-column prop="categoryName" label="流程分类" min-width="150" show-overflow-tooltip></el-table-column>
<el-table-column prop="initiatorName" label="申请人" min-width="120">
<template slot-scope="{row}">{{row.variable.initiatorName}}</template>
</el-table-column>