spring
4 天以前 b7b0e7ece35ccba6ad2cb00170dc06fd5e7bb289
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();
};