30 lines
817 B
JavaScript
30 lines
817 B
JavaScript
import request from '@/utils/request'
|
|
// 查询塔基配置列表
|
|
const findtowerConfigGroupOnline=(deptId, projectId)=> {
|
|
return request({
|
|
url: `bgscreen/tower/findtowerConfigGroupOnline?deptId=${deptId||0}&projectId=${projectId||0}`,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 查询塔基配置列表
|
|
const findtowerConfigListByProjectId=(deptId, projectId)=> {
|
|
return request({
|
|
url: `bgscreen/tower/findtowerConfigListByProjectId?deptId=${deptId||0}&projectId=${projectId||0}`,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 查询塔基运行数据
|
|
const findtowerStatisticsView=(deviceSn)=> {
|
|
return request({
|
|
url: `bgscreen/tower/findtowerStatisticsView?deviceSn=${deviceSn}`,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
export default{
|
|
findtowerConfigGroupOnline,
|
|
findtowerConfigListByProjectId,
|
|
findtowerStatisticsView
|
|
} |