fix: 网元操作接口超时时间60s

This commit is contained in:
TsMask
2024-06-25 15:37:58 +08:00
parent 06b6175a76
commit 84bdb44286

View File

@@ -134,6 +134,7 @@ export function saveOAMFile(data: Record<string, any>) {
url: `/ne/info/oamFile`,
method: 'put',
data: data,
timeout: 60_000,
});
}
@@ -173,5 +174,6 @@ export function serviceNeAction(data: Record<string, any>) {
url: `/ne/action/service`,
method: 'put',
data: data,
timeout: 60_000,
});
}