From b983fdb4765f32a910a1703447de42361f07cd7f Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: Sun, 04 Jan 2026 16:47:28 +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