fix(办公管理): 修复 "任务办理"标签显示异常问题

This commit is contained in:
konbai
2023-03-08 00:22:05 +08:00
parent a00da12f70
commit b81b48baa7
2 changed files with 2 additions and 2 deletions

View File

@@ -321,7 +321,7 @@ export default {
initData() {
this.taskForm.procInsId = this.$route.params && this.$route.params.procInsId;
this.taskForm.taskId = this.$route.query && this.$route.query.taskId;
this.processed = this.$route.query && Boolean(this.$route.query.processed);
this.processed = this.$route.query && eval(this.$route.query.processed || false);
// 流程任务重获取变量表单
this.getProcessDetails(this.taskForm.procInsId, this.taskForm.taskId);
this.loadIndex = this.taskForm.procInsId;

View File

@@ -217,7 +217,7 @@ export default {
this.$router.push({
path: '/workflow/process/detail/' + row.procInsId,
query: {
finished: false
processed: false
}
})
},