feat: 图片压缩后上传COS + 修复订单LazyInitializationException + 添加调试日志

This commit is contained in:
AIGC Developer
2025-12-05 21:06:16 +08:00
parent b4b0230ee1
commit 624d560fb4
35 changed files with 1916 additions and 218 deletions

View File

@@ -6,7 +6,7 @@ export const cleanupApi = {
// 获取清理统计信息
getCleanupStats() {
return request({
url: '/api/cleanup/cleanup-stats',
url: '/cleanup/cleanup-stats',
method: 'GET'
})
},
@@ -14,7 +14,7 @@ export const cleanupApi = {
// 执行完整清理
performFullCleanup() {
return request({
url: '/api/cleanup/full-cleanup',
url: '/cleanup/full-cleanup',
method: 'POST'
})
},
@@ -22,7 +22,7 @@ export const cleanupApi = {
// 清理指定用户任务
cleanupUserTasks(username) {
return request({
url: `/api/cleanup/user-tasks/${username}`,
url: `/cleanup/user-tasks/${username}`,
method: 'POST'
})
},