From 3e6b804b7d7a02aa1ee185048faaf93b49251302 Mon Sep 17 00:00:00 2001 From: zhaoyu Date: Thu, 18 Jan 2024 20:47:57 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=90=E6=82=A3=E8=80=83=E8=AF=84bug?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../branch_hazard_assessment/components/evaluation.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/views/evaluation/branch_hazard_assessment/components/evaluation.vue b/src/views/evaluation/branch_hazard_assessment/components/evaluation.vue index 3516c98..a0eae46 100644 --- a/src/views/evaluation/branch_hazard_assessment/components/evaluation.vue +++ b/src/views/evaluation/branch_hazard_assessment/components/evaluation.vue @@ -168,7 +168,7 @@ v-if="USER_ID=='1'" type="danger" icon="el-icon-view" - @click="fnDelvaluation(row.HIDDEN_ID)">重置考评 + @click="fnDelvaluation(row)">重置考评 @@ -427,7 +427,7 @@ export default { } }) }, - fnDelvaluation(hiddenId) { + fnDelvaluation(row) { this.$confirm('确定要重置选中的评审记录吗?', { confirmButtonText: '确定', cancelButtonText: '取消', @@ -437,7 +437,8 @@ export default { requestFN( '/hiddenevaluationrecord/deleteEvaluation', { - HIDDEN_ID: hiddenId + HIDDEN_ID: row.HIDDEN_ID, + USER_ID: row.CREATOR } ).then((data) => { this.listLoading = false