From 88b8751b57d03e55df591c5311a2f2cc814a736c Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期四, 10 七月 2025 14:53:19 +0800
Subject: [PATCH] 涉及到价格的输入框做下校验(数字格式,且大于0)

---
 src/views/procurementManagement/invoiceEntry/components/ExpandTable.vue |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/src/views/procurementManagement/invoiceEntry/components/ExpandTable.vue b/src/views/procurementManagement/invoiceEntry/components/ExpandTable.vue
index 7596e6d..aa663eb 100644
--- a/src/views/procurementManagement/invoiceEntry/components/ExpandTable.vue
+++ b/src/views/procurementManagement/invoiceEntry/components/ExpandTable.vue
@@ -4,6 +4,7 @@
     :column="columns"
     :tableData="dataList"
     :tableLoading="loading"
+    height="auto"
   >
   </PIMTable>
 </template>
@@ -11,6 +12,7 @@
 <script setup>
 import { usePaginationApi } from "@/hooks/usePaginationApi";
 import { productList } from "@/api/procurementManagement/procurementLedger.js";
+import { nextTick } from "vue";
 
 defineOptions({
   name: "鏉ョエ鐧昏鎶樺彔琛�",
@@ -98,7 +100,8 @@
   }
 );
 
-const getList = (id) => {
+const getList = async (id) => {
+  await nextTick();
   filters.salesLedgerId = id;
   getTableData();
 };

--
Gitblit v1.9.3