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