曹睿
2025-07-03 214f545bb14227d6d0ef34fcd71604ea37693d5f
src/views/procurementManagement/invoiceEntry/index.vue
@@ -42,7 +42,7 @@
        :expand-row-keys="expandRowKeys"
        @expand-change="expandChange"
        @selection-change="handleSelectionChange"
        @pagination="onCurrentChange"
        @pagination="changePage"
      >
        <template #expand="{ row }">
          <ExpandTable ref="expandTableRef" />
@@ -182,6 +182,11 @@
  expandTableRef.value.getList(row.id);
};
const changePage = ({ page }) => {
  pagination.currentPage = page;
  onCurrentChange(page);
};
onMounted(() => {
  getTableData();
});