diff --git a/jero-web/src/views/projectManagement/components/certificationList/index.vue b/jero-web/src/views/projectManagement/components/certificationList/index.vue index 3358f9955..645dbe1ea 100644 --- a/jero-web/src/views/projectManagement/components/certificationList/index.vue +++ b/jero-web/src/views/projectManagement/components/certificationList/index.vue @@ -1300,7 +1300,20 @@ } }, associatedplatForm(id,flag,type,ids){ - console.log(type) + console.log(id,flag,type,ids) + let query ={ + ids:ids, + projectLibraryIds:id + } + if(type == '认证'){ + postAction('/project/projectCertificationInventoryEO/listPlatform', query).then((res) => { + if (res.success) { + this.$refs.associatedplatRef.visible = false + this.$message.success(this.$t('OperationSuccessful')) + this.getList() + } + }) + } // if(flag == '1'){ // this.$refs.associatedplatthreeRef.transferModel(id,type,ids) // }else{ diff --git a/jero-web/src/views/projectManagement/components/listEditModel.vue b/jero-web/src/views/projectManagement/components/listEditModel.vue index 39498ce70..60de12437 100644 --- a/jero-web/src/views/projectManagement/components/listEditModel.vue +++ b/jero-web/src/views/projectManagement/components/listEditModel.vue @@ -845,6 +845,8 @@ } this.formInline.designDutyIdName = this.dataList && this.dataList.length>0 ? this.dataList[0].designDutyIdName : '' this.formInline.verifyDutyIdName = this.dataList && this.dataList.length>0 ? this.dataList[0].verifyDutyIdName : '' + this.formInline.designDutyId = this.dataList && this.dataList.length>0 ? this.dataList[0].designDutyId : '' + this.formInline.verifyDutyId = this.dataList && this.dataList.length>0 ? this.dataList[0].verifyDutyId : '' this.formInline.designDueDate = this.dataList && this.dataList.length>0 ? this.dataList[0].designDueDate : '' this.formInline.verifyDueDate = this.dataList && this.dataList.length>0 ? this.dataList[0].verifyDueDate : '' this.formInline.designDeliverableTemplate = this.dataList && this.dataList.length>0 ? this.dataList[0].designDeliverableTemplate : ''