src/views/energyManagement/waterManagement/components/waterBillForm.vue
@@ -160,7 +160,7 @@ // 计算水费金额 const calculateWaterBill = () => { if (form.value.waterConsumption && form.value.waterPrice) { form.value.waterBill = (parseFloat(form.value.waterConsumption) * parseFloat(form.value.waterPrice)).toFixed(2); form.value.waterBill = (parseFloat(form.value.waterConsumption) * parseFloat(form.value.waterPrice)).toFixed(5); } }