import { http } from "@/utils/http"; export type Result = { code: number; message: string; data: any; }; export const getOverview = () => { return http.request("get", "/dashboard/overview"); }; export const getStatistics = (type: string = "week") => { return http.request("get", `/dashboard/statistics?type=${type}`); }; export const getQuickLinks = () => { return http.request("get", "/dashboard/quick-links"); }; export const getDeviceStatus = () => { return http.request("get", "/dashboard/device-status"); };