优化首页统计和任务请求

This commit is contained in:
yml2213
2026-08-05 10:41:40 +08:00
parent 2fda47c631
commit 335f5cf57b
11 changed files with 421 additions and 160 deletions
+6
View File
@@ -0,0 +1,6 @@
import api from './client';
import type { DashboardSummary } from './types';
export const dashboardApi = {
summary: () => api.get<DashboardSummary, DashboardSummary>('/dashboard/summary'),
};