更新功能和文档: 增强支付系统、任务队列管理、用户作品管理等功能

This commit is contained in:
AIGC Developer
2025-10-29 10:16:03 +08:00
parent 8c55f9f376
commit 6f72386523
64 changed files with 1529 additions and 339 deletions

View File

@@ -29,7 +29,7 @@ export const cleanupApi = {
// 获取清理统计信息原始fetch方式用于测试
async getCleanupStatsRaw() {
try {
const response = await fetch('/api/cleanup/cleanup-stats')
const response = await fetch('http://localhost:8080/api/cleanup/cleanup-stats')
if (response.ok) {
return await response.json()
} else {
@@ -44,7 +44,7 @@ export const cleanupApi = {
// 执行完整清理原始fetch方式用于测试
async performFullCleanupRaw() {
try {
const response = await fetch('/api/cleanup/full-cleanup', {
const response = await fetch('http://localhost:8080/api/cleanup/full-cleanup', {
method: 'POST',
headers: {
'Content-Type': 'application/json'