vue中的数字加法确保是数字
handleChange() { this.temp.plan_qty = Number(this.temp.odf_qty) + Number(this.temp.add_qty); }
Explanation:
Number(this.temp.odf_qty)ensures thatthis.temp.odf_qtyis converted to a number.Number(this.temp.add_qty)does the same forthis.temp.add_qty.- Adding these two numbers together will give the correct result, and assigning it to
this.temp.plan_qtyensures thatplan_qtyis also a number.

浙公网安备 33010602011771号