fix: 根据搜索条件导出,去除最大记录限制

This commit is contained in:
TsMask
2025-09-19 15:29:54 +08:00
parent f8376c803f
commit ae171a2a82
11 changed files with 22 additions and 11 deletions

View File

@@ -308,7 +308,8 @@ function fnExportList() {
modalState.confirmLoading = true;
const hide = message.loading(t('common.loading'), 0);
const querys = toRaw(queryParams);
querys.pageSize = 1_000_0000;
querys.pageNum = 1;
querys.pageSize = tablePagination.total;
exportAMFDataUE(querys)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {