Files
admin-govern/src/api/cs-device-boot/csLedger.ts

18 lines
361 B
TypeScript
Raw Normal View History

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'
})
}