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

@@ -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) {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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) {

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) {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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) {