|  |  |  | 
|---|
|  |  |  | type="date" | 
|---|
|  |  |  | value-format="yyyy-MM-dd HH:mm:ss" | 
|---|
|  |  |  | placeholder="申请日期" | 
|---|
|  |  |  | disabled="true" | 
|---|
|  |  |  | :disabled="true" | 
|---|
|  |  |  | > | 
|---|
|  |  |  | </el-date-picker> | 
|---|
|  |  |  | </el-form-item> | 
|---|
|  |  |  | 
|---|
|  |  |  | 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; | 
|---|