gaoluyang
2026-05-25 4aaae263a6c728eaa2a3f45a1ae36082619b52a0
src/views/financialManagement/payable/payment.vue
@@ -53,7 +53,7 @@
        <div>
          <el-statistic title="本页付款合计"
                        :value="totalPaymentAmount"
                        :precision="2"
                        :precision="4"
                        prefix="¥" />
        </div>
        <div>
@@ -152,7 +152,7 @@
  const formatMoney = value => {
    if (value === undefined || value === null) return "0.00";
    return Number(value)
      .toFixed(2)
      .toFixed(4)
      .replace(/\B(?=(\d{3})+(?!\d))/g, ",");
  };