11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
import createAxios from "@/utils/request";
|
|
import type IDashboardAnalysis from "@/domain/iDashboard";
|
|
|
|
/** 仪表盘分析页 - 聚合统计数据 */
|
|
export const getDashboardAnalysis = () => {
|
|
return createAxios<IDashboardAnalysis>({
|
|
url: "/dashboard/analysis",
|
|
method: "get",
|
|
});
|
|
};
|