update 标准征求意见流程

This commit is contained in:
赵霄
2023-11-17 11:11:47 +08:00
parent 73c0f3c36c
commit f1e8ec4888
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ export default class EsEnum {
} }
for (const i in this) { for (const i in this) {
const e = this[i] const e = this[i]
if (e.value !== undefined && e.value !== null && e.value.toString().indexOf(value.toString()) !== -1) { if (e.value !== undefined && e.value !== null && value.toString().indexOf(e.value.toString()) !== -1) {
return i return i
} }
} }
@@ -775,7 +775,8 @@ export default {
this.loading = true this.loading = true
const params = { const params = {
processInstanceId: this.$route.query.processInstanceId, processInstanceId: this.$route.query.processInstanceId,
draftId: this.$route.query.draftId draftId: this.$route.query.draftId,
taskId: this.$route.query.taskId
} }
queryConsultationProcessDetail(params).then(res => { queryConsultationProcessDetail(params).then(res => {
if (res.success) { if (res.success) {
@@ -784,6 +785,7 @@ export default {
this.processInfo = Object.assign({}, result.basicProcessInfoDTO || {}) this.processInfo = Object.assign({}, result.basicProcessInfoDTO || {})
// 流程审批信息 // 流程审批信息
this.approvalInfo = Object.assign({}, result.basicTaskInfoDTO || {}) this.approvalInfo = Object.assign({}, result.basicTaskInfoDTO || {})
this.approvalInfo.taskId = this.approvalInfo.taskId || this.$route.query.taskId
// 业务基本信息 // 业务基本信息
this.basicServiceInfo = Object.assign({}, result.businessInfoDTO.processFbStandardConsultation || {}) this.basicServiceInfo = Object.assign({}, result.businessInfoDTO.processFbStandardConsultation || {})
// 业务分派信息 // 业务分派信息