zouyu
2 天以前 32f10392ab00b07e85c0b4229037c30af7c3f28e
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",
  });
}