gaoluyang
3 天以前 f41f726df15733c4cc161881168e19f62bf060b3
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();
});