|
@@ -247,11 +247,11 @@ export default {
|
|
|
break
|
|
|
}
|
|
|
projectListProject({ bizId: Number(localStorage.getItem('bizId')) }).then(res => { // 获取项目(查询)
|
|
|
- this.projectList = res.data
|
|
|
+ this.projectList = res.data.filter(item => item.id !== -1)
|
|
|
})
|
|
|
configShowRequirementVersionEnum({ bizId: Number(localStorage.getItem('bizId')) }).then(res => {
|
|
|
// 获取需求(查询)
|
|
|
- this.demandList = res.data
|
|
|
+ this.demandList = res.data.filter(item => item.id !== -1)
|
|
|
})
|
|
|
},
|
|
|
test2(item, e) { // 获取团队人员信息
|