更新功能和文档: 增强支付系统、任务队列管理、用户作品管理等功能
This commit is contained in:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user