11
WXL
2024-04-22 c2486044121750d274d40aac2e65b47d4c25b5c9
11
已修改2个文件
13 ■■■■■ 文件已修改
src/api/project/tallage.js 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/project/tallage/computingBill/index.vue 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/project/tallage.js
@@ -13,6 +13,7 @@
    return request({
      url: '/project/fundtax/batchFundTax',
      method: 'post',
      timeout: 15000000,
      data: query
    })
  }
src/views/project/tallage/computingBill/index.vue
@@ -118,7 +118,7 @@
              prop="index"
              align="center"
              fixed
              label="案例捐献者"
              label="序号"
              width="120"
            >
            </el-table-column>
@@ -1015,9 +1015,10 @@
        this.form = response.data;
        if (this.form.serviceFunds[0]) {
          this.donorchargeorgans = this.form.serviceFunds;
          this.donorchargeorgans.forEach(item => {
          this.donorchargeorgans.forEach((item, index) => {
            item.taXmoney = item.pretaxcost - item.taxedcost;
            item.taXmoney = item.taXmoney.toFixed(2);
            item.index = index + 1;
            this.accumulation();
          });
        }
@@ -1043,9 +1044,10 @@
                  this.form = response.data;
                  if (this.form.serviceFunds[0]) {
                    this.donorchargeorgans = this.form.serviceFunds;
                    this.donorchargeorgans.forEach(item => {
                    this.donorchargeorgans.forEach((item, index) => {
                      item.taXmoney = item.pretaxcost - item.taxedcost;
                      item.taXmoney = item.taXmoney.toFixed(2);
                      item.index = index + 1;
                      this.accumulation();
                    });
                  }
@@ -1064,9 +1066,11 @@
                  this.form = res.data;
                  if (this.form.serviceFunds[0]) {
                    this.donorchargeorgans = this.form.serviceFunds;
                    this.donorchargeorgans.forEach(item => {
                    this.donorchargeorgans.forEach((item, index) => {
                      item.taXmoney = item.pretaxcost - item.taxedcost;
                      item.taXmoney = item.taXmoney.toFixed(2);
                      item.index = index + 1;
                      this.accumulation();
                    });
                  }