| | |
| | | |
| | | // 构建查询参数 |
| | | const query = { |
| | | page: pagination.currentPage, |
| | | current: pagination.currentPage, |
| | | size: pagination.pageSize, |
| | | borrowStatus: searchForm.borrowStatus || undefined, |
| | | borrower: searchForm.borrower || undefined, |
| | |
| | | }; |
| | | |
| | | // 处理分页变化 |
| | | 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; |
| | | loadReturnList(); |
| | | }; |
| | | // 处理扫码内容 |