2024-01-09 13:49:21 +08:00
|
|
|
import createAxios from '@/utils/request'
|
|
|
|
|
|
|
|
|
|
// 设备列表
|
|
|
|
|
export function getDeviceTree() {
|
|
|
|
|
return createAxios({
|
|
|
|
|
url: '/cs-device-boot/csLedger/deviceTree',
|
|
|
|
|
method: 'POST'
|
|
|
|
|
})
|
|
|
|
|
}
|
2024-01-11 08:54:09 +08:00
|
|
|
|
|
|
|
|
// 监测点列表
|
|
|
|
|
export function getLineTree() {
|
|
|
|
|
return createAxios({
|
|
|
|
|
url: '/cs-device-boot/csLedger/lineTree',
|
|
|
|
|
method: 'POST'
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-10-11 10:35:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
//云设备录入树
|
|
|
|
|
export function getCldTree() {
|
|
|
|
|
return createAxios({
|
|
|
|
|
url: '/cs-device-boot/csLedger/cldTree',
|
|
|
|
|
method: 'POST'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|