feat: home 1

This commit is contained in:
alwayssuper
2025-02-27 09:29:46 +08:00
parent dd1eb5de6d
commit b72768ab4f
4 changed files with 415 additions and 3 deletions

View File

@ -0,0 +1,10 @@
import request from '@/config/axios'
// IoT 数据统计 API
export const ProductCategoryApi = {
// 查询首页所需数据统计信息
getIotMainStats: async () => {
return await request.get({ url: `/iot/statistics/main`})
}
}