🔨 监控逻辑.

This commit is contained in:
lijiahangmax
2025-09-09 21:25:44 +08:00
parent 3c75aedcec
commit 0b7faa038a
229 changed files with 13303 additions and 358 deletions

View File

@@ -20,7 +20,7 @@ export function setSftpFileContent(token: string, content: string) {
formData.append('token', token);
formData.append('file', new File([content], Date.now() + '', { type: 'text/plain' }));
return axios.post<boolean>('/terminal/terminal-sftp/set-content', formData, {
timeout: 60000,
timeout: 120000,
headers: {
'Content-Type': 'multipart/form-data'
}