feat: 新增全站历史统计功能

This commit is contained in:
陈淳
2024-02-27 13:43:56 +08:00
parent 5a2d9125d4
commit 6697649b97
7 changed files with 148 additions and 52 deletions

View File

@@ -15,3 +15,10 @@ export function getWeek() {
method: "get",
});
}
// 获取全部数据
export function getAccessList() {
return request({
url: "/access-log",
method: "get",
});
}