spring
10 天以前 f756f80b764e5416f4dff942b59ad4434be6a008
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",
  });
}