11
WXL
2024-07-17 21fe2968337eb8eab97adc88750b71c4057e98f8
11
已修改1个文件
8 ■■■■■ 文件已修改
src/views/project/fund/performancedetails/index.vue 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/project/fund/performancedetails/index.vue
@@ -14,7 +14,7 @@
                type="date"
                value-format="yyyy-MM-dd HH:mm:ss"
                placeholder="申请日期"
                disabled="true"
                :disabled="true"
              >
              </el-date-picker>
            </el-form-item>
@@ -2056,10 +2056,12 @@
        if (!this.rbDetails[i].taxamount) {
          this.rbDetails[i].taxamount = 0;
        }
        this.rbDetails[i].taxedamount =
        this.rbDetails[i].taxedamount = (
          parseFloat(this.rbDetails[i].amount) -
          parseFloat(this.rbDetails[i].taxamount);
          parseFloat(this.rbDetails[i].taxamount)
        ).toFixed(2);
        targetValue += parseFloat(this.rbDetails[i].amount); // 假设每个对象中的特定值存储在'specificValue'属性下
        console.log(this.rbDetails[i].taxedamount, "合计");
      }
      console.log(targetValue, "合计");
      this.form.pretaxcost = targetValue;