From e2065fb891612ea6aee3f447f1d07843aa128eff Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期一, 20 一月 2025 18:01:35 +0800 Subject: [PATCH] 流程图、流转过程放到流程推进详情页面 --- src/views/flowable/task/myProcess/detail/index.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/flowable/task/myProcess/detail/index.vue b/src/views/flowable/task/myProcess/detail/index.vue index ce9cef0..ca06721 100644 --- a/src/views/flowable/task/myProcess/detail/index.vue +++ b/src/views/flowable/task/myProcess/detail/index.vue @@ -153,13 +153,13 @@ this.flowName = this.$route.query && this.$route.query.flowName; // 娴佺▼浠诲姟閲嶈幏鍙栧彉閲忚〃鍗� this.processVariables( this.taskForm.taskId) - this.getFlowRecordList(this.taskForm.procInsId, this.taskForm.deployId); + this.getFlowRecordList(this.taskForm.procInsId); }, methods: { handleClick(tab, event) { if (tab.name === '3'){ this.imgLoading = true - flowXmlAndNode({procInsId:this.taskForm.procInsId,deployId:this.taskForm.deployId}).then(res => { + flowXmlAndNode({processInsId:this.taskForm.procInsId,deployId:this.taskForm.deployId}).then(res => { this.imgLoading = false this.flowData = res.data; }) @@ -180,9 +180,9 @@ } }, /** 娴佺▼娴佽浆璁板綍 */ - getFlowRecordList(procInsId, deployId) { + getFlowRecordList(procInsId) { const that = this - const params = {procInsId: procInsId, deployId: deployId} + const params = {procInsId: procInsId} flowRecord(params).then(res => { that.flowRecordList = res.data.flowList; }).catch(res => { -- Gitblit v1.8.0