import request from "@/utils/request";
|
|
// 获取档案总体统计
|
export function getDocumentStatistics() {
|
return request({
|
url: "/fileManagement/statistics/overview",
|
method: "get",
|
});
|
}
|
|
// 获取档案分类统计
|
export function getCategoryStatistics() {
|
return request({
|
url: "/fileManagement/statistics/category",
|
method: "get",
|
});
|
}
|
|
// 获取档案状态统计
|
export function getStatusStatistics() {
|
return request({
|
url: "/fileManagement/statistics/status",
|
method: "get",
|
});
|
}
|
|
// 获取档案借阅统计
|
export function getBorrowStatistics() {
|
return request({
|
url: "/fileManagement/statistics/borrow",
|
method: "get",
|
});
|
}
|
|
// 获取档案年度统计
|
export function getYearStatistics() {
|
return request({
|
url: "/fileManagement/statistics/year",
|
method: "get",
|
});
|
}
|
|
// 获取档案位置统计
|
export function getLocationStatistics() {
|
return request({
|
url: "/fileManagement/statistics/location",
|
method: "get",
|
});
|
}
|
|
// 获取档案趋势统计
|
export function getTrendStatistics(params) {
|
return request({
|
url: "/fileManagement/statistics/trend",
|
method: "get",
|
params: params,
|
});
|
}
|
|
// 获取档案借阅排行
|
export function getBorrowRanking() {
|
return request({
|
url: "/fileManagement/statistics/borrowRanking",
|
method: "get",
|
});
|
}
|
|
// 获取档案分类详情统计
|
export function getCategoryDetailStatistics(categoryId) {
|
return request({
|
url: `/fileManagement/statistics/categoryDetail/${categoryId}`,
|
method: "get",
|
});
|
}
|