diff --git a/src/views/cory/template/components/engineeringChangeApplicationForm.vue b/src/views/cory/template/components/engineeringChangeApplicationForm.vue index db3a07f..90d12ff 100644 --- a/src/views/cory/template/components/engineeringChangeApplicationForm.vue +++ b/src/views/cory/template/components/engineeringChangeApplicationForm.vue @@ -71,8 +71,8 @@ {{ tableDetail.content }} - {{ - tableDetail.attachmentsList.originalName + {{ + tableDetail.attachmentsList?.originalName }} @@ -175,7 +175,8 @@ const props = defineProps({ } }); -const tableDetail = ref({}); +const tableDetail = ref({ attachmentsImgList: [], attachmentsList: [] }); + const exportRef = ref(); const radioList = ref([ { value: 0, label: '设计漏项' }, diff --git a/src/views/design/prelimScheme/index.vue b/src/views/design/prelimScheme/index.vue index a606b62..62c2065 100644 --- a/src/views/design/prelimScheme/index.vue +++ b/src/views/design/prelimScheme/index.vue @@ -42,6 +42,15 @@