From c163668a14236d1b7f33e9fc97ac16153ba2a90c Mon Sep 17 00:00:00 2001
From: 祖安之光 <11848914+light-of-zuan@user.noreply.gitee.com>
Date: Tue, 09 Jun 2026 10:09:37 +0800
Subject: [PATCH] 修改下载

---
 src/views/safetyReview/expertManage/postEvaluation/components/evaluate.vue |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/views/safetyReview/expertManage/postEvaluation/components/evaluate.vue b/src/views/safetyReview/expertManage/postEvaluation/components/evaluate.vue
index a79fc9e..a31c386 100644
--- a/src/views/safetyReview/expertManage/postEvaluation/components/evaluate.vue
+++ b/src/views/safetyReview/expertManage/postEvaluation/components/evaluate.vue
@@ -418,9 +418,12 @@
 
   const expertIncomeValue = state.form.taxExpertFee
   if(expertIncomeValue){
-    if (expertIncomeValue <= 4000 ) {
+    if(expertIncomeValue <= 800){
+      state.form.incomeTaxPayable = 0
+    }
+    else if ( 800 < expertIncomeValue && expertIncomeValue <= 4000 ) {
       state.form.incomeTaxPayable = ((expertIncomeValue - 800)*0.2).toFixed(2)
-    } else {
+    } else if(expertIncomeValue>4000){
       state.form.incomeTaxPayable = (expertIncomeValue *0.8 *0.2).toFixed(2)
     }
   }

--
Gitblit v1.9.2