gaoluyang
23 小时以前 47b25c580f68e670100bb229e41f29ea1c21f49a
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",
  });
}