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()