From 9d58f76be556ccc374ef934398467248c9742ecc Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Fri, 15 Dec 2023 11:13:23 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9=E4=BC=81=E6=A0=87?= =?UTF-8?q?=E5=B0=81=E5=AD=98=E4=BF=9D=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../EnterpriseStandardSealSaveFlow.vue | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/views/workCenter/enterpriseStandardSealSave/EnterpriseStandardSealSaveFlow.vue b/src/views/workCenter/enterpriseStandardSealSave/EnterpriseStandardSealSaveFlow.vue index f57fa083..9a6e43bf 100644 --- a/src/views/workCenter/enterpriseStandardSealSave/EnterpriseStandardSealSaveFlow.vue +++ b/src/views/workCenter/enterpriseStandardSealSave/EnterpriseStandardSealSaveFlow.vue @@ -305,11 +305,17 @@ export default { } // 需要传给后端的数据 const paramObj = {} - paramObj.common = { ...processInfoForm, ...approvalInfoForm } - paramObj.common.taskId = this.$route.query.taskId || null - paramObj.common.processInstanceId = this.model.common ? this.model.common.processInstanceId : null - paramObj.flowUser = personnelObj - paramObj.data = baseInfo.formInline + // 流程信息 + paramObj.basicProcessInfoDTO = Object.assign({}, processInfoForm) + // 流程审批信息 + paramObj.basicTaskInfoDTO = Object.assign({}, approvalInfoForm) + // 业务基本信息 + paramObj.businessInfoDTO = {} + paramObj.businessInfoDTO.common = { ...processInfoForm, ...approvalInfoForm } + paramObj.businessInfoDTO.common.taskId = this.$route.query.taskId || null + paramObj.businessInfoDTO.common.processInstanceId = this.model.common ? this.model.common.processInstanceId : null + paramObj.userInfoMap = personnelObj + paramObj.businessInfoDTO.data = baseInfo.formInline this.loading = true // 保存到草稿 enStandardSealSaveSave(paramObj).then(res => {