diff --git a/src/views/kpi/assessment/performance/components/table.vue b/src/views/kpi/assessment/performance/components/table.vue index 8d5d8bb..05dd103 100644 --- a/src/views/kpi/assessment/performance/components/table.vue +++ b/src/views/kpi/assessment/performance/components/table.vue @@ -265,7 +265,7 @@ export default { handleGetScorlList (list) { console.log('list: ', list) console.log('userInfo: ', this.userInfo.userId) - return list.filter(i => i.acquireScore !== null || i.approvalId === this.userInfo.userId) + return list.filter(i => i.acquireScore !== null || (i.approvalId === this.userInfo.userId && this.tableInfo.score)) }, handleScore (item) { return this.scoreList.filter(i => i.score === item).length > 0 ? this.scoreList.filter(i => i.score === item)[0].name : 0