gaoluyang
2 天以前 1f17fe5e687b4dadef305d25b1e97ce8cd1afc8a
src/views/fileManagement/borrow/index.vue
@@ -329,7 +329,7 @@
    
    // 构建查询参数
    const query = {
      page: pagination.currentPage,
      current: pagination.currentPage,
      size: pagination.pageSize,
      documentationId: searchForm.documentationId || undefined,
      borrowStatus: searchForm.borrowStatus || undefined,
@@ -568,7 +568,7 @@
    type: "warning",
  })
    .then(() => {
      proxy.download("/documentationBorrowManagement/export", {}, "借阅管理.xlsx");
      proxy.download("/documentationBorrowManagement/export", {}, "借阅登记.xlsx");
    })
    .catch(() => {
      ElMessage.info("已取消");
@@ -581,9 +581,9 @@
};
// 处理分页变化
const handlePagination = (current, size) => {
  pagination.currentPage = current;
  pagination.pageSize = size;
const handlePagination = (pageInfo) => {
  pagination.currentPage = pageInfo.current || pageInfo.page;
  pagination.pageSize = pageInfo.size || pageInfo.limit;
  loadBorrowList();
};