diff --git a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskForm.vue b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskForm.vue index de10e347..014317a5 100644 --- a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskForm.vue +++ b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskForm.vue @@ -139,7 +139,7 @@ export default { this.formInline.contactUserLeaderLeader_dictText = data.flowUser ? data.flowUser.contactUserLeaderLeader_dictText : data.dataList[0].contactUserLeaderLeader_dictText this.formInline = Object.assign({}, this.formInline) // 给表格赋值 - if (data.dataList.length > 0 && data.dataList[0].applicationType) { + if (data.dataList.length > 0 && data.dataList[0].projectType_dictText) { // 第一行数据有申请类型字段说明才有表格数据,否则有可能是保存没有填表格信息的情况 this.$nextTick(() => { this.$refs.tableRef.initData(data) diff --git a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterStandardForm.vue b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterStandardForm.vue index 3b420964..37706435 100644 --- a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterStandardForm.vue +++ b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterStandardForm.vue @@ -78,7 +78,7 @@ export default { this.formInline.collectUserLeader_dictText = data.dataList[0].collectUserLeader_dictText this.formInline = Object.assign({}, this.formInline) // 给表格赋值 - if (data.dataList.length > 0 && data.dataList[0].applicationType) { + if (data.dataList.length > 0 && data.dataList[0].projectType_dictText) { // 第一行数据有申请类型字段说明才有表格数据,否则有可能是保存没有填表格信息的情况 this.$nextTick(() => { this.$refs.tableRef.initData(data)