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

This commit is contained in:
TsMask
2025-09-18 11:01:36 +08:00
parent 904488f59a
commit 20a12eba56
9 changed files with 46 additions and 18 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -202,6 +202,8 @@ function fnExportList() {
onOk() {
const hide = message.loading(t('common.loading'), 0);
const querys = toRaw(queryParams);
querys.pageNum = 1;
querys.pageSize = tablePagination.total;
exportNBState(querys)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {