From 83f8710230688e23ecc79e77e21ef20db9632de9 Mon Sep 17 00:00:00 2001
From: 曹睿 <360930172@qq.com>
Date: 星期四, 10 七月 2025 14:16:13 +0800
Subject: [PATCH] feat: 来票登记调整

---
 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..f281f82 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="300px"
   >
   </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