曹睿
4 天以前 83f8710230688e23ecc79e77e21ef20db9632de9
feat: 来票登记调整
已修改1个文件
5 ■■■■ 文件已修改
src/views/procurementManagement/invoiceEntry/components/ExpandTable.vue 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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();
};