修复在我的流程中点击取消报错问题

This commit is contained in:
BMJ
2022-11-25 22:30:48 +08:00
parent 74f5dc3444
commit 855d75abd6
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -224,7 +224,7 @@ export default {
/** 取消流程申请 */
handleStop(row){
const params = {
instanceId: row.procInsId
procInsId: row.procInsId
}
stopProcess(params).then( res => {
this.$modal.msgSuccess(res.msg);