fix: cdr/ue去除导出条数限制

This commit is contained in:
TsMask
2025-08-28 14:59:08 +08:00
parent 5e014309cc
commit d8c9bbc775
13 changed files with 15 additions and 15 deletions

View File

@@ -345,7 +345,7 @@ function fnExportList() {
onOk() {
const hide = message.loading(t('common.loading'), 0);
const querys = toRaw(queryParams);
querys.pageSize = 10000;
querys.pageSize = 1_000_0000;
exportAMFDataUE(querys)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {

View File

@@ -409,7 +409,7 @@ function fnExportList() {
onOk() {
const hide = message.loading(t('common.loading'), 0);
const querys = toRaw(queryParams);
querys.pageSize = 10000;
querys.pageSize = 1_000_0000;
exportIMSDataCDR(querys)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {

View File

@@ -339,7 +339,7 @@ function fnExportList() {
onOk() {
const hide = message.loading(t('common.loading'), 0);
const querys = toRaw(queryParams);
querys.pageSize = 10000;
querys.pageSize = 1_000_0000;
exportMMEDataUE(querys)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {

View File

@@ -369,7 +369,7 @@ function fnExportList() {
onOk() {
const hide = message.loading(t('common.loading'), 0);
const querys = toRaw(queryParams);
querys.pageSize = 10000;
querys.pageSize = 1_000_0000;
exportSGWCDataCDR(querys)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {

View File

@@ -415,7 +415,7 @@ function fnExportList() {
onOk() {
const hide = message.loading(t('common.loading'), 0);
const querys = toRaw(queryParams);
querys.pageSize = 10000;
querys.pageSize = 1_000_0000;
exportSMFDataCDR(querys)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {

View File

@@ -378,7 +378,7 @@ function fnExportList() {
onOk() {
const hide = message.loading(t('common.loading'), 0);
const querys = toRaw(queryParams);
querys.pageSize = 10000;
querys.pageSize = 1_000_0000;
exportSMSCDataCDR(querys)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {

View File

@@ -307,7 +307,7 @@ function fnExportList() {
onOk() {
const hide = message.loading(t('common.loading'), 0);
const querys = toRaw(queryParams);
querys.pageSize = 10000;
querys.pageSize = 1_000_0000;
exportAMFDataUE(querys)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {

View File

@@ -355,7 +355,7 @@ function fnExportList() {
onOk() {
const hide = message.loading(t('common.loading'), 0);
const querys = toRaw(queryParams);
querys.pageSize = 10000;
querys.pageSize = 1_000_0000;
exportIMSDataCDR(querys)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {

View File

@@ -308,7 +308,7 @@ function fnExportList() {
onOk() {
const hide = message.loading(t('common.loading'), 0);
const querys = toRaw(queryParams);
querys.pageSize = 10000;
querys.pageSize = 1_000_0000;
exportMMEDataUE(querys)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {

View File

@@ -350,7 +350,7 @@ function fnExportList() {
onOk() {
const hide = message.loading(t('common.loading'), 0);
const querys = toRaw(queryParams);
querys.pageSize = 10000;
querys.pageSize = 1_000_0000;
exportSMFDataCDR(querys)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {

View File

@@ -278,7 +278,7 @@ function fnExportList() {
onOk() {
const hide = message.loading(t('common.loading'), 0);
const querys = toRaw(queryParams);
querys.pageSize = 10000;
querys.pageSize = 1_000_0000;
exportSMSCDataCDR(querys)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {