Files
yudao-ui-admin-vue3/src/api/iot/statistics/index.ts

10 lines
260 B
TypeScript
Raw Normal View History

2025-02-27 09:29:46 +08:00
import request from '@/config/axios'
// IoT 数据统计 API
export const ProductCategoryApi = {
// 查询首页所需数据统计信息
2025-02-27 10:39:50 +08:00
getIotMainStats: async (params: any) => {
return await request.get({ url: `/iot/statistics/main`, params })
2025-02-27 09:29:46 +08:00
}
}