diff --git a/jero-web/src/views/projectManagement/components/certificationList/components/addModel.vue b/jero-web/src/views/projectManagement/components/certificationList/components/addModel.vue index 6bb785eb4..3e7da8e95 100644 --- a/jero-web/src/views/projectManagement/components/certificationList/components/addModel.vue +++ b/jero-web/src/views/projectManagement/components/certificationList/components/addModel.vue @@ -705,6 +705,14 @@ :data-source="dataList" :pagination="false" :loading="loading"> + + + {{record.deliverableTemplateName}} + + @@ -865,7 +873,8 @@ dataIndex: 'deliverableTemplateName', align: 'left', ellipsis: true, - width: 200 + width: 200, + scopedSlots: { customRender: 'deliverableTemplate' } } ] } @@ -982,6 +991,7 @@ let query = { id: id } + this.dataList = [] getAction('/project/projectCertificationInventoryEO/connectPlatform', query).then((res) => { if (res.success) { this.dataList = res.result || [] @@ -1181,6 +1191,9 @@ this.handleInput('dataList.' + index + '.dutyTerritory') this.queryPersonByProject(this.formInline.dataList[index].dutyTerritory.join(','), index) }, + down(id, name) { + downloadFile('/sys/common/downLoadFile', name, { id: id }) + }, queryPersonByProject(row, index) { let query = { projectId: this.$route.query.id,