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 b0e712ec4..573f45019 100644 --- a/jero-web/src/views/projectManagement/components/certificationList/components/addModel.vue +++ b/jero-web/src/views/projectManagement/components/certificationList/components/addModel.vue @@ -900,11 +900,21 @@ if (this.formInline.id) { url = this.url.edit Action = putAction - Object.keys(query).forEach(res => { - if (query[res] && query[res] instanceof Array) { - query[res] = query[res].join(',') - } - }) + // if(Object.keys(query) == 'projectCertificationInventoryEOS'){ + // + // }else{ + // Object.keys(query).forEach(res => { + // if (query[res] && query[res] instanceof Array) { + // query[res] = query[res].join(',') + // } + // }) + // } + if (query.dutyDepart) { + query.dutyDepart = query.dutyDepart.join(',') + } + if (query.dutyTerritory) { + query.dutyTerritory = query.dutyTerritory.join(',') + } query.projectLibraryId = this.$route.query.id } else { url = this.url.add