流程+任务分发+报销功能完成

This commit is contained in:
2025-02-23 16:24:29 +08:00
parent f54dc4aa3e
commit 330036b272
33 changed files with 1669 additions and 124 deletions

View File

@@ -54,11 +54,6 @@
<el-table v-loading="loading" :data="todoList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center"/>
<!-- <el-table-column label="任务编号" align="center" prop="taskId" :show-overflow-tooltip="true"/>-->
<el-table-column label="流程标题" align="left">
<template slot-scope="scope">
<label>{{scope.row.procVars.description}}</label>
</template>
</el-table-column>
<el-table-column label="流程名称" align="center" width="180" prop="procDefName"/>
<el-table-column label="任务节点" align="center" width="155" prop="taskName"/>
<el-table-column label="流程版本" align="center" width="80">
@@ -138,10 +133,7 @@ export default {
rules: {}
};
},
/* created() {
console.log(9999)
this.getList();
},*/
beforeRouteEnter(to, from, next) {
next(vm => {
vm.getList()
@@ -173,11 +165,13 @@ export default {
},
// 跳转到处理页面
handleProcess(row) {
console.log(row)
this.$router.push({
path: '/workflow/process/detail/' + row.procInsId,
query: {
taskId: row.taskId,
processed: true
processed: true,
category:row.category,
}
})
},