This commit is contained in:
熊成强 2020-11-16 09:24:40 +08:00
parent f4e472a420
commit 9510c96b7d
2 changed files with 15 additions and 3 deletions

View File

@ -17,8 +17,20 @@
<el-table-column prop="staffName" label="姓名"></el-table-column>
<el-table-column prop="staffNo" label="工号"></el-table-column>
<el-table-column prop="departmentName" label="部门"></el-table-column>
<el-table-column prop="allScore" label="考评结果"></el-table-column>
<el-table-column prop="scoreLevel" label="实际分布"></el-table-column>
<el-table-column prop="allScore" label="考评结果">
<template slot-scope="scop">
<div>
{{scop.row.allScore || '--'}}
</div>
</template>
</el-table-column>
<el-table-column prop="scoreLevel" label="实际分布">
<template slot-scope="scop">
<div>
{{scop.row.scoreLevel || '--'}}
</div>
</template>
</el-table-column>
</el-table>
</div>
<dialog-depart

View File

@ -209,7 +209,7 @@ export default {
},
methods: {
handleJump (item) {
this.$router.push({name: 'assessment-stepList', query: {id: this.startId, step: item.flowProcess}})
this.$router.push({name: 'assessment-stepList', query: {id: this.startId[1], step: item.flowProcess}})
},
//
handleliColor (val) {