gaoluyang
2026-05-25 4aaae263a6c728eaa2a3f45a1ae36082619b52a0
src/views/financialManagement/payable/paymentApply.vue
@@ -162,7 +162,7 @@
              <el-input-number
                v-model="form.paymentAmount"
                :min="0"
                :precision="2"
                :precision="4"
                style="width: 100%;"
                :disabled="isView"
                placeholder="根据入库单自动汇总,可修改"
@@ -250,7 +250,7 @@
              <el-input-number
                v-model="paymentForm.paymentAmount"
                :min="0"
                :precision="2"
                :precision="4"
                style="width: 100%;"
              />
            </el-form-item>
@@ -441,7 +441,7 @@
const formatMoney = (value) => {
  if (value === undefined || value === null) return "0.00";
  return Number(value).toFixed(2).replace(/\B(?=(\d{3})+(?!\d))/g, ",");
  return Number(value).toFixed(4).replace(/\B(?=(\d{3})+(?!\d))/g, ",");
};
const normalizeStatus = (status) => {
@@ -526,7 +526,7 @@
      .reduce((acc, row) => acc + getInboundRowTaxInclusiveAmount(row), 0);
  }
  form.paymentAmount = sum > 0 ? Number(sum.toFixed(2)) : 0;
  form.paymentAmount = sum > 0 ? Number(sum.toFixed(4)) : 0;
};
const inboundBatchDisplayText = computed(() => {