This commit is contained in:
“shengyudong”
2026-01-06 14:18:39 +08:00
commit 5a384b694e
10345 changed files with 2050918 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
endpoint,method,description,auth,params,response
/api/dashboard/overview,GET,获取工作台概览(企业统计数据、本月发布数、增长率),需要认证,,返回用户总数、产品总数、文章总数、本月发布数及增长率
/api/dashboard/recent-publishes,GET,获取最近发布记录(按时间倒序),需要认证,limit (默认5),返回发布记录列表(含员工名、产品名、状态、相对时间)
/api/dashboard/hot-products,GET,获取热门产品(按发布次数排序),需要认证,limit (默认4),返回产品列表(含产品名、发布次数、占比百分比)
1 endpoint method description auth params response
2 /api/dashboard/overview GET 获取工作台概览(企业统计数据、本月发布数、增长率) 需要认证 返回用户总数、产品总数、文章总数、本月发布数及增长率
3 /api/dashboard/recent-publishes GET 获取最近发布记录(按时间倒序) 需要认证 limit (默认5) 返回发布记录列表(含员工名、产品名、状态、相对时间)
4 /api/dashboard/hot-products GET 获取热门产品(按发布次数排序) 需要认证 limit (默认4) 返回产品列表(含产品名、发布次数、占比百分比)