11
WXL
2024-07-29 4acc0fb0d27d9bd959e6d4bf6b2ab2702b1b4e42
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>
@@ -205,7 +205,7 @@
                ></el-cascader> -->
              </template>
            </el-table-column>
            <el-table-column
            <!-- <el-table-column
              prop="jxrq"
              align="center"
              label="绩效日期"
@@ -219,7 +219,7 @@
                >
                </el-date-picker>
              </template>
            </el-table-column>
            </el-table-column> -->
            <el-table-column
              prop="amount"
              align="center"
@@ -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;
@@ -2831,19 +2833,19 @@
      var columnnames = [
        "applytype",
        "itemid",
        "jxrq",
        // "jxrq",
        "beneficiaryname",
        "idcardno",
        "depositbank",
        "bankcardno",
        "remark",
        "remark"
      ];
      columns.forEach((column, index) => {
        if (index === 0) {
          sums[index] = "合计";
          return;
        }
        //去除部分字段计算
        if (columnnames.indexOf(column.property) > -1) {
          return;