screenFront/src/http/offsite/index.ts

40 lines
1.3 KiB
TypeScript
Raw Normal View History

2023-05-12 08:41:33 +00:00
/*
* @FilePath: \wwwd:\code\screenFront\src\http\offsite\index.ts
* @Author:
* @文件版本: V1.0.0
* @Date: 2023-03-06 13:15:36
* @Description:
*
* 版权信息 : 2023 by ${}, All Rights Reserved.
*/
import {get,post} from "@/utils/http"
export function deviceCountsOfOutPlantData(){
2023-08-03 03:37:01 +00:00
return get('/screen/device/deviceCountsOfOutPlant')
2023-05-12 08:41:33 +00:00
}
export function deviceTypeCountsOfOutPlantData(){
2023-08-03 03:37:01 +00:00
return get('/screen/device/deviceTypeCountsOfOutPlant')
2023-05-12 08:41:33 +00:00
}
export function deviceStatusCountsOfOutPlantData(){
2023-08-03 03:37:01 +00:00
return get('/screen/device/deviceStatusCountsOfOutPlant')
2023-05-12 08:41:33 +00:00
}
export function getDeviceOutPlantData(){
2023-08-03 03:37:01 +00:00
return get('/screen/device/getDeviceOutPlant')
2023-05-12 08:41:33 +00:00
}
// 各分公司设备数量(二级)
export function deviceCountsSecondaryOfOutPlantData(){
2023-08-03 03:37:01 +00:00
return get('/screen/device/deviceCountsSecondaryOfOutPlant')
2023-05-12 08:41:33 +00:00
}
// 分公司各类型设备数量(二级)
export function deviceTypeCountsSecondaryOfOutPlantData(){
2023-08-03 03:37:01 +00:00
return get('/screen/device/deviceTypeCountsSecondaryOfOutPlant')
2023-05-12 08:41:33 +00:00
}
// 分公司设备各种状态的数量(二级)
export function deviceStatusCountsSecondaryOfOutPlantData(){
2023-08-03 03:37:01 +00:00
return get('/screen/device/deviceStatusCountsSecondaryOfOutPlant')
2023-05-12 08:41:33 +00:00
}
// 分公司二级页面列表
export function secondaryOutPlantData(){
2023-08-03 03:37:01 +00:00
return get('/screen/device/secondaryOutPlant')
2023-05-12 08:41:33 +00:00
}