diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionFormItem.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionFormItem.vue index b6b2805d..2e6fcbbb 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionFormItem.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionFormItem.vue @@ -457,7 +457,7 @@ export default { question: { type: Object, default() { - return [] + return {} } }, criterionId: { diff --git a/src/views/trials/trials-panel/reading/reading-tracking/components/configList.vue b/src/views/trials/trials-panel/reading/reading-tracking/components/configList.vue index 110f6f02..fcf155cc 100644 --- a/src/views/trials/trials-panel/reading/reading-tracking/components/configList.vue +++ b/src/views/trials/trials-panel/reading/reading-tracking/components/configList.vue @@ -45,7 +45,7 @@ @@ -68,7 +68,7 @@ export default { data() { return { loading: false, - exportInfo: [] + exportInfo: {} } }, mounted() { @@ -152,7 +152,7 @@ export default { } else if ((this.exportInfo.CriterionGroup === 0 || this.exportInfo.CriterionType === 0 ) && item.Code === 1 && (row.HasChildren || row.IsTableQuestion)) { // 自定义或非肿瘤阅片标准阅片结果表(1)不能配置表格问题 return true - } else if (item.Code === 8 && row.HasChildren) { + } else if (item.Code === 8 && (row.HasChildren || (row.IsTableQuestion && this.exportInfo.CriterionType !== 0))) { // else if (item.Code === 8 && (row.HasChildren || row.IsTableQuestion)) // CDISC导出不能配置表格问题 return true