优化
This commit is contained in:
parent
f4e472a420
commit
9510c96b7d
@ -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
|
||||
|
||||
@ -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) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user