From 5201cc9c05669fae462d70dafcf7b6d46c554f4f Mon Sep 17 00:00:00 2001 From: laishajiang <12977614+laishajiang@user.noreply.gitee.com> Date: Tue, 19 Mar 2024 11:19:37 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=BB=A1=E6=84=8F=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E4=B8=8D=E4=B8=80=E8=87=B4=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/work/components/ConfirmedCompletion.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/views/work/components/ConfirmedCompletion.vue b/src/views/work/components/ConfirmedCompletion.vue index 0634a94..e72a0b0 100644 --- a/src/views/work/components/ConfirmedCompletion.vue +++ b/src/views/work/components/ConfirmedCompletion.vue @@ -253,7 +253,13 @@ function isSatisfactionNonConsistent() { if (!props.mail.satisfaction || !props.mail.verifyFeedback) { return false } - return getSatisfaction() !== props.mail.verifyFeedback + if(getSatisfaction()!== props.mail.verifyFeedback){ + if(getSatisfaction()=="满意"&&props.mail.verifyFeedback=="非常满意"){ + return false; + }else{ + return true; + } + } }