feat: 商品统计

This commit is contained in:
duan
2025-03-14 16:00:04 +08:00
parent 9cdd9434cf
commit 5fe06e834b
10 changed files with 321 additions and 46 deletions

View File

@@ -56,7 +56,21 @@ const AuthAPI = {
method: "get",
});
},
// 统计
statistics(params: object) {
return request<any, Responseres>({
url: `${baseURL}/statistics`,
method: "get",
params
});
},
stockFlow(params: object) {
return request<any, Responseres>({
url: `${baseURL}/stockFlow`,
method: "get",
params
});
},
};