zhouwx
2025-11-20 7786e561f165ae3045cc070063cbeaebba6f1ff0
修改
已修改1个文件
22 ■■■■ 文件已修改
src/views/safetyReview/expertManage/postEvaluation/components/evaluate.vue 22 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/safetyReview/expertManage/postEvaluation/components/evaluate.vue
@@ -407,14 +407,24 @@
}
const getExpertTax = () => {
  // const expertIncomeValue = state.form.taxExpertFee
  // if (expertIncomeValue == null || expertIncomeValue / 1.01 - 800 <= 0) {
  //   state.form.incomeTaxPayable = 0
  //   state.form.afterTaxAmount = expertIncomeValue
  // } else {
  //   state.form.incomeTaxPayable = ((expertIncomeValue / 1.01 - 800) * 0.2).toFixed(2)
  //   state.form.afterTaxAmount = (expertIncomeValue - state.form.incomeTaxPayable).toFixed(2)
  // }
  const expertIncomeValue = state.form.taxExpertFee
  if (expertIncomeValue == null || expertIncomeValue / 1.01 - 800 <= 0) {
    state.form.incomeTaxPayable = 0
    state.form.afterTaxAmount = expertIncomeValue
  } else {
    state.form.incomeTaxPayable = ((expertIncomeValue / 1.01 - 800) * 0.2).toFixed(2)
    state.form.afterTaxAmount = (expertIncomeValue - state.form.incomeTaxPayable).toFixed(2)
  if(expertIncomeValue){
    if (expertIncomeValue <= 4000 ) {
      state.form.incomeTaxPayable = ((expertIncomeValue - 800)*0.2).toFixed(2)
    } else {
      state.form.incomeTaxPayable = (expertIncomeValue *0.8 *0.2).toFixed(2)
    }
  }
}
const taxIncome = computed(() => {