优化
This commit is contained in:
parent
9b67a1a999
commit
9e18137be8
@ -31,6 +31,18 @@
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作">
|
||||
<template slot-scope="scope">
|
||||
<div>
|
||||
<el-button
|
||||
@click="handlePush(scope.row)"
|
||||
type="text"
|
||||
size="small">
|
||||
查看详情
|
||||
</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<dialog-depart
|
||||
@ -77,6 +89,15 @@ export default {
|
||||
this.handleDetailReq()
|
||||
},
|
||||
methods: {
|
||||
handlePush (item) {
|
||||
console.log('item: ', item.recordId)
|
||||
this.$router.push({
|
||||
name: 'assessment-performance',
|
||||
query: {
|
||||
id: item.recordId
|
||||
}
|
||||
})
|
||||
},
|
||||
// 返回上一页
|
||||
handleBack () {
|
||||
this.$router.go(-1)
|
||||
|
||||
@ -124,7 +124,7 @@ export default {
|
||||
},
|
||||
// 考核人数报表持有类
|
||||
option: {
|
||||
color: ['#3398DB'],
|
||||
color: ['#409EFF'],
|
||||
tooltip: {
|
||||
trigger: 'axis',
|
||||
axisPointer: {
|
||||
@ -154,9 +154,9 @@ export default {
|
||||
],
|
||||
series: [
|
||||
{
|
||||
barWidth: 20,
|
||||
name: '',
|
||||
type: 'bar',
|
||||
barWidth: '60%',
|
||||
data: []
|
||||
}
|
||||
]
|
||||
@ -164,7 +164,7 @@ export default {
|
||||
key: 0,
|
||||
// 等级分布数据报表持有类
|
||||
levelOption: {
|
||||
color: ['#3398DB'],
|
||||
color: ['#409EFF'],
|
||||
tooltip: {
|
||||
trigger: 'axis',
|
||||
axisPointer: {
|
||||
@ -194,9 +194,9 @@ export default {
|
||||
],
|
||||
series: [
|
||||
{
|
||||
barWidth: 20,
|
||||
name: '直接访问',
|
||||
type: 'bar',
|
||||
barWidth: '60%',
|
||||
data: []
|
||||
}
|
||||
]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user