fix(办公管理): 修复已办任务撤回操作操作失败问题(https://gitee.com/KonBAI-Q/ruoyi-flowable-plus/issues/I61V7N)

This commit is contained in:
konbai
2023-01-01 21:02:12 +08:00
parent 0fcf897479
commit c04be5e308
4 changed files with 134 additions and 57 deletions

View File

@@ -225,11 +225,12 @@ export default {
})
},
/** 撤回任务 */
handleRevoke(row){
handleRevoke(row) {
const params = {
procInsId: row.procInsId
}
revokeProcess(params).then( res => {
procInsId: row.procInsId,
taskId: row.taskId
};
revokeProcess(params).then(res => {
this.$modal.msgSuccess(res.msg);
this.getList();
});