|
@@ -221,7 +221,9 @@ export default {
|
|
obj['projectId'] = []
|
|
obj['projectId'] = []
|
|
if(res.data.benefitList && res.data.benefitList.length>0) {
|
|
if(res.data.benefitList && res.data.benefitList.length>0) {
|
|
res.data.benefitList.forEach((item,index)=>{
|
|
res.data.benefitList.forEach((item,index)=>{
|
|
- obj['projectId'].push(item.projectId.toString())
|
|
|
|
|
|
+ if(item.projectId || item.projectId == 0 ){
|
|
|
|
+ obj['projectId'].push(item.projectId.toString())
|
|
|
|
+ }
|
|
})
|
|
})
|
|
}
|
|
}
|
|
this.$set(this, 'form', JSON.parse(JSON.stringify(obj)))
|
|
this.$set(this, 'form', JSON.parse(JSON.stringify(obj)))
|