From e857e53ee632e0fc871d98fe966cdfd50ebc2807 Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: 星期五, 12 十二月 2025 10:18:42 +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