feat(applicationManagement): 用工记录列表增加风险结果查看功能

- 在用工记录列表的每个行末尾添加了"打开风险结果"按钮
- 点击按钮将跳转到风险结果页面,展示相关风险历史信息
This commit is contained in:
陈昱达
2025-07-28 09:57:40 +08:00
parent 2000be2d94
commit c2dbce956c

View File

@@ -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
}`
)
}
}
})
])
}
}