BPM:新增【流程任务】菜单,用于全部流程任务的查询

This commit is contained in:
YunaiV
2024-03-22 09:07:04 +08:00
parent 5286ad1cd6
commit 48f6624737
6 changed files with 178 additions and 8 deletions

View File

@ -81,7 +81,7 @@
</template>
</el-table-column>
<el-table-column align="center" label="审批建议" prop="reason" min-width="180" />
<el-table-column align="center" label="耗时" prop="durationInMillis" width="120">
<el-table-column align="center" label="耗时" prop="durationInMillis" width="160">
<template #default="scope">
{{ formatPast2(scope.row.durationInMillis) }}
</template>
@ -127,7 +127,7 @@ const queryFormRef = ref() // 搜索的表单
const getList = async () => {
loading.value = true
try {
const data = await TaskApi.getDoneTaskPage(queryParams)
const data = await TaskApi.getTaskDonePage(queryParams)
list.value = data.list
total.value = data.total
} finally {