11
WXL
2023-11-10 ea03fa60b9fdf8eca24afa34259e1a0523a6e1cf
src/views/project/fundcheck/ethicalExpertFeeCheck/index.vue
@@ -1320,7 +1320,6 @@
          const obj = selection.find(obj => obj.id === item);
          console.log(obj);
          this.overallidsvalue.push(obj);
        }
      });
      console.log(this.overallids);
@@ -1354,26 +1353,35 @@
    },
    Totalcalculation(tot) {
      console.log(tot);
      let bojite={
        fundids:this.overallids,
        isTaxAfter:tot,
      }
      let bojite = {
        fundids: this.overallids,
        isTaxAfter: tot
      };
      if (tot == 0) {
        TotalcalculationFn(bojite).then(row => {
          console.log(row.msg);
          if (row.code=200) {
          if (row.code == 200) {
            this.$modal.msgSuccess(row.msg);
          }else{
          this.$modal.msgError(row.msg);
          } else {
            console.log(123);
            this.$modal.msgError(row.msg);
          }
        });
        }).catch(error => {
 this.$modal.msgError(error);
});
      } else {
        console.log(this.overallidsvalue);
        const hasValue = this.overallidsvalue.every(obj => obj.istax == 1);
        if (hasValue) {
          TotalcalculationFn(bojite).then(row => {
            console.log(row.msg);
          });
            if (row.code == 200) {
              this.$modal.msgSuccess(row.msg);
            } else {
              this.$modal.msgError(row.msg);
            }
          }).catch(error => {
 this.$modal.msgError(error);
});
        } else {
          this.$modal.msgError("请选择算税后的数据进行合并计算");
        }