fix 80628
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user