gaoluyang
2 天以前 c92172a28abefc68b57f3e28d6618052bf5644c9
src/api/fileManagement/document.js
@@ -162,3 +162,28 @@
    data: ids,
  });
}
// 统计相关接口
// 获取总体统计数据
export function getDocumentationOverview() {
  return request({
    url: "/documentation/overview",
    method: "get",
  });
}
// 获取分类统计数据
export function getDocumentationCategoryStats() {
  return request({
    url: "/documentation/category",
    method: "get",
  });
}
// 获取状态统计数据
export function getDocumentationStatusStats() {
  return request({
    url: "/documentation/status",
    method: "get",
  });
}