From c2dbce956ccd246d66a4c2be0dd9eb5375e09973 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=98=B1=E8=BE=BE?= Date: Mon, 28 Jul 2025 09:57:40 +0800 Subject: [PATCH] =?UTF-8?q?feat(applicationManagement):=20=E7=94=A8?= =?UTF-8?q?=E5=B7=A5=E8=AE=B0=E5=BD=95=E5=88=97=E8=A1=A8=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E9=A3=8E=E9=99=A9=E7=BB=93=E6=9E=9C=E6=9F=A5=E7=9C=8B=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在用工记录列表的每个行末尾添加了"打开风险结果"按钮 - 点击按钮将跳转到风险结果页面,展示相关风险历史信息 --- .../employRecord/index.vue | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/src/views/applicationManagement/employRecord/index.vue b/src/views/applicationManagement/employRecord/index.vue index 74aec75..d890d6b 100644 --- a/src/views/applicationManagement/employRecord/index.vue +++ b/src/views/applicationManagement/employRecord/index.vue @@ -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 + }` + ) + } + } + }) ]) } }