40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
/*
|
|
* @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(){
|
|
return get('/screen/device/deviceCountsOfOutPlant')
|
|
}
|
|
export function deviceTypeCountsOfOutPlantData(){
|
|
return get('/screen/device/deviceTypeCountsOfOutPlant')
|
|
}
|
|
export function deviceStatusCountsOfOutPlantData(){
|
|
return get('/screen/device/deviceStatusCountsOfOutPlant')
|
|
}
|
|
export function getDeviceOutPlantData(){
|
|
return get('/screen/device/getDeviceOutPlant')
|
|
}
|
|
// 各分公司设备数量(二级)
|
|
export function deviceCountsSecondaryOfOutPlantData(){
|
|
return get('/screen/device/deviceCountsSecondaryOfOutPlant')
|
|
}
|
|
// 分公司各类型设备数量(二级)
|
|
export function deviceTypeCountsSecondaryOfOutPlantData(){
|
|
return get('/screen/device/deviceTypeCountsSecondaryOfOutPlant')
|
|
}
|
|
// 分公司设备各种状态的数量(二级)
|
|
export function deviceStatusCountsSecondaryOfOutPlantData(){
|
|
return get('/screen/device/deviceStatusCountsSecondaryOfOutPlant')
|
|
}
|
|
// 分公司二级页面列表
|
|
export function secondaryOutPlantData(){
|
|
return get('/screen/device/secondaryOutPlant')
|
|
} |