fix: 耗材列表增加统计

This commit is contained in:
2025-03-13 10:19:57 +08:00
parent 9295b58587
commit dc5dc45893
4 changed files with 367 additions and 102 deletions

View File

@@ -63,6 +63,14 @@ const Api = {
method: "post",
});
},
// 统计
statistics(params: any) {
return request<any>({
url: `${baseURL}/statistics`,
method: "get",
params
});
},
};