|
|
|
@ -516,7 +516,8 @@ export default { |
|
|
|
|
this.$refs.judgementTable.clearSelection(); |
|
|
|
|
}); |
|
|
|
|
let params = { |
|
|
|
|
systemId |
|
|
|
|
systemId, |
|
|
|
|
name: this.judgementpointsquery |
|
|
|
|
}; |
|
|
|
|
if (systemId == 2 || systemId == 3) { |
|
|
|
|
console.log("系统id:", systemId); |
|
|
|
@ -532,11 +533,10 @@ export default { |
|
|
|
|
}, |
|
|
|
|
getProcessClassData(params) { // 获取流程类判分点列表数据 |
|
|
|
|
this.visibleLoading = true; |
|
|
|
|
this.$post(`${this.api.getLcJudgmentPoint}`, params).then(res => { |
|
|
|
|
let list = res.message.records; |
|
|
|
|
this.$get(`${this.api.getBcJudgmentPoint}`, params).then(res => { |
|
|
|
|
let list = res.judgmentPoints |
|
|
|
|
let result = []; |
|
|
|
|
list.map(i => { |
|
|
|
|
i.judgmentId = i.lcId; |
|
|
|
|
this.projectJudgmentData.find(j => j.judgmentId === i.judgmentId) || result.push(i); |
|
|
|
|
}); |
|
|
|
|
this.visibleLoading = false; |
|
|
|
|