From 9d32e62eb05bad00d861cbe067c355898e32bdfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Mon, 15 Jan 2024 14:07:06 +0800 Subject: [PATCH] fix 80628 --- .../StandardEntryOrChangeProcess.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue b/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue index fd5fb12..19eff3a 100644 --- a/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue +++ b/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue @@ -181,8 +181,13 @@ export default { queryStandardECProcessData({ processInstanceId, taskId, projectId }).then(async res => { if (res.success) { const { result = {} } = res - this.processInfo = Object.assign({}, result.basicProcessInfoDTO) - this.formInline = { ...result.businessInfoDTO.businessMap } + this.processInfo = Object.assign({}, result.basicProcessInfoDTO || {}) + this.approvalInfo = Object.assign({}, result.basicTaskInfoDTO || {}) + this.formInline = { + ...result.businessInfoDTO.businessMap, + source_dictText: result.businessInfoDTO.source_dictText, + operateType_dictText: result.businessInfoDTO.operateType_dictText + } switch (this.formInline.source) { case StandardSource.DOMESTIC.value: await this.getDomesticFormItem()