mirror of
https://github.com/yudaocode/yudao-ui-admin-vue3.git
synced 2026-05-02 20:38:24 +00:00
10 lines
260 B
TypeScript
10 lines
260 B
TypeScript
import request from '@/config/axios'
|
|
|
|
// IoT 数据统计 API
|
|
export const ProductCategoryApi = {
|
|
// 查询首页所需数据统计信息
|
|
getIotMainStats: async (params: any) => {
|
|
return await request.get({ url: `/iot/statistics/main`, params })
|
|
}
|
|
|
|
} |