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