mirror of
http://112.124.100.131/ebiz-ai/ebiz-ai-knowledge-manage.git
synced 2025-12-09 10:56:50 +08:00
feat(applicationManagement): 用工记录列表增加风险结果查看功能
- 在用工记录列表的每个行末尾添加了"打开风险结果"按钮 - 点击按钮将跳转到风险结果页面,展示相关风险历史信息
This commit is contained in:
@@ -144,7 +144,28 @@ export default {
|
||||
on: { click: () => this.handleView(params.row) }
|
||||
},
|
||||
''
|
||||
)
|
||||
),
|
||||
// 编辑按钮
|
||||
h('el-button', {
|
||||
props: {
|
||||
type: 'text',
|
||||
size: 'mini',
|
||||
icon: 'el-icon-paperclip',
|
||||
title: '打开风险结果'
|
||||
},
|
||||
class: 'normal-button',
|
||||
on: {
|
||||
click: p => {
|
||||
window.open(
|
||||
`${
|
||||
window.location.origin
|
||||
}/bpic_eli/risk_history.html?taCode=${
|
||||
params.row.taCode
|
||||
}`
|
||||
)
|
||||
}
|
||||
}
|
||||
})
|
||||
])
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user