fix: 增加多个导出操作的超时时间至180秒

This commit is contained in:
TsMask
2025-08-19 16:09:08 +08:00
parent 4c49640763
commit e05084afdc
7 changed files with 7 additions and 7 deletions

View File

@@ -38,7 +38,7 @@ export function exportAMFDataUE(data: Record<string, any>) {
method: 'post',
data,
responseType: 'blob',
timeout: 60_000,
timeout: 180_000,
});
}

View File

@@ -38,6 +38,6 @@ export function exportIMSDataCDR(data: Record<string, any>) {
method: 'post',
data,
responseType: 'blob',
timeout: 60_000,
timeout: 180_000,
});
}

View File

@@ -38,7 +38,7 @@ export function exportMMEDataUE(data: Record<string, any>) {
method: 'post',
data,
responseType: 'blob',
timeout: 60_000,
timeout: 180_000,
});
}

View File

@@ -25,6 +25,6 @@ export function exportNBState(data: Record<string, any>) {
method: 'post',
data,
responseType: 'blob',
timeout: 60_000,
timeout: 180_000,
});
}

View File

@@ -38,6 +38,6 @@ export function exportSGWCDataCDR(data: Record<string, any>) {
method: 'post',
data,
responseType: 'blob',
timeout: 60_000,
timeout: 180_000,
});
}

View File

@@ -38,7 +38,7 @@ export function exportSMFDataCDR(data: Record<string, any>) {
method: 'post',
data,
responseType: 'blob',
timeout: 60_000,
timeout: 180_000,
});
}

View File

@@ -38,6 +38,6 @@ export function exportSMSCDataCDR(data: Record<string, any>) {
method: 'post',
data,
responseType: 'blob',
timeout: 60_000,
timeout: 180_000,
});
}