diff --git a/src/views/dashboard/amfUE/index.vue b/src/views/dashboard/amfUE/index.vue index 1038710a..572aec08 100644 --- a/src/views/dashboard/amfUE/index.vue +++ b/src/views/dashboard/amfUE/index.vue @@ -346,7 +346,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) { diff --git a/src/views/dashboard/imsCDR/index.vue b/src/views/dashboard/imsCDR/index.vue index 9afbadba..75f2d2b8 100644 --- a/src/views/dashboard/imsCDR/index.vue +++ b/src/views/dashboard/imsCDR/index.vue @@ -434,7 +434,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; exportIMSDataCDR(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/dashboard/mmeUE/index.vue b/src/views/dashboard/mmeUE/index.vue index a97b0052..7ab7d645 100644 --- a/src/views/dashboard/mmeUE/index.vue +++ b/src/views/dashboard/mmeUE/index.vue @@ -340,7 +340,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; exportMMEDataUE(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/dashboard/sgwcCDR/index.vue b/src/views/dashboard/sgwcCDR/index.vue index 6c040a5c..9dc9a078 100644 --- a/src/views/dashboard/sgwcCDR/index.vue +++ b/src/views/dashboard/sgwcCDR/index.vue @@ -370,7 +370,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; exportSGWCDataCDR(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/dashboard/smfCDR/index.vue b/src/views/dashboard/smfCDR/index.vue index 08c52b66..4036c895 100644 --- a/src/views/dashboard/smfCDR/index.vue +++ b/src/views/dashboard/smfCDR/index.vue @@ -416,7 +416,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; exportSMFDataCDR(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/dashboard/smscCDR/index.vue b/src/views/dashboard/smscCDR/index.vue index e2c484b3..42f35ddc 100644 --- a/src/views/dashboard/smscCDR/index.vue +++ b/src/views/dashboard/smscCDR/index.vue @@ -379,7 +379,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; exportSMSCDataCDR(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/tenant/amfUE/index.vue b/src/views/tenant/amfUE/index.vue index 0f48d4ae..6dcceecc 100644 --- a/src/views/tenant/amfUE/index.vue +++ b/src/views/tenant/amfUE/index.vue @@ -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) { diff --git a/src/views/tenant/imsCDR/index.vue b/src/views/tenant/imsCDR/index.vue index 6df72d82..3072bfb0 100644 --- a/src/views/tenant/imsCDR/index.vue +++ b/src/views/tenant/imsCDR/index.vue @@ -356,7 +356,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; exportIMSDataCDR(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/tenant/mmeUE/index.vue b/src/views/tenant/mmeUE/index.vue index 5517f22d..6bfea0b2 100644 --- a/src/views/tenant/mmeUE/index.vue +++ b/src/views/tenant/mmeUE/index.vue @@ -309,7 +309,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; exportMMEDataUE(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/tenant/smfCDR/index.vue b/src/views/tenant/smfCDR/index.vue index e89572e4..3b024311 100644 --- a/src/views/tenant/smfCDR/index.vue +++ b/src/views/tenant/smfCDR/index.vue @@ -351,7 +351,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; exportSMFDataCDR(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { diff --git a/src/views/tenant/smscCDR/index.vue b/src/views/tenant/smscCDR/index.vue index cd6b3883..43e208af 100644 --- a/src/views/tenant/smscCDR/index.vue +++ b/src/views/tenant/smscCDR/index.vue @@ -279,7 +279,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; exportSMSCDataCDR(querys) .then(res => { if (res.code === RESULT_CODE_SUCCESS) {