spring
8 天以前 3f3d35d6d6445f9cc90a8cf7bb496bee7f465542
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",
  });
}