diff --git a/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue b/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue index 3e74ee5af..88e1fd3e8 100644 --- a/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue +++ b/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue @@ -824,11 +824,11 @@ export default { if(itemIn !== 'sdt') { if(item[itemIn] instanceof Object) { postDateobj[itemIn] = item[itemIn] - if(item[itemIn].list[0].dataValue instanceof Array) { - item[itemIn].list[0].dataValue = item[itemIn].list[0].dataValue.join(',') - // todo 校验 - console.log(item[itemIn].list[0].dataValue,'item[itemIn].list[0].dataValue') - } + item[itemIn].list.forEach((item,index) => { + if(item.type == 'pull_more'){ + item.dataValue = item.dataValue.join(',') + } + }) } } })